java.lang.Object
me.hugmanrique.cartage.util.NumberUtils
Provides methods that operate on numeric values.
- See Also:
- Bit Twiddling Hacks by S. E. Anderson
-
Method Summary
Modifier and TypeMethodDescriptionstatic booleanisPowerOf2(int value)Returns whether the given value is a power of 2.
-
Method Details
-
isPowerOf2
public static boolean isPowerOf2(int value)Returns whether the given value is a power of 2.- Parameters:
value- the value to check- Returns:
trueif the value is a power of 2;falseotherwise
-