Java Utililty Methods Bit Unset

List of utility methods to do Bit Unset

Description

The list of methods to do Bit Unset are organized into topic(s).

Method

intunsetFlag(final int data, final int flag)
Unsets a flag.
return data & ~flag;
intunsetFlag(int bitset, int flag)
unset Flag
return bitset & (~flag);
intunsetHighBit(int integer)
unset High Bit
return unSetBit(integer, 7);