Overload List
Name | Description | |
---|---|---|
OpenBitSet()()()() | Initializes a new instance of the OpenBitSet class | |
OpenBitSet(Int64) | Constructs an OpenBitSet large enough to hold numBits.
| |
OpenBitSet(array<Int64>[]()[][], Int32) | Constructs an OpenBitSet from an existing long[].
The first 64 bits are in long[0], with bit index 0 at the least significant bit, and bit index 63 at the most significant. Given a bit index, the word containing it is long[index/64], and it is at bit number index%64 within that word. numWords are the number of elements in the array that contain set bits (non-zero longs). numWords should be <= bits.length, and any existing words in the array at position >= numWords should be zero. |