Package gc.garcol.libcore
Class BitUtil
java.lang.Object
gc.garcol.libcore.BitUtil
Reference to the Agrona BitUtil class.
-
Method Summary
Modifier and TypeMethodDescriptionstatic int
align
(int value, int alignment) Align a value to the next multiple up of alignment.
-
Method Details
-
align
public static int align(int value, int alignment) Align a value to the next multiple up of alignment. If the value equals an alignment multiple then it is returned unchanged.
This method executes without branching. This code is designed to be use in the fast path and should not be used with negative numbers. Negative numbers will result in undefined behaviour.
- Parameters:
value
- to be aligned up.alignment
- to be used.- Returns:
- the value aligned to the next boundary.
-