public static class BitSet
extends Object
This implementation uses a dense array holding bit groups of size 31 to keep track of when bits
are set to true or false. Using 31 bits keeps our implementation within the range of V8's
"tagged small integer" and improves performance. Using a dense array also makes access faster on
V8.
Not yet implemented:
public static BitSet valueOf(ByteBuffer)
public static BitSet valueOf(LongBuffer)
- See Also:
- Serialized Form