Returns the value of the bit at the specified index.
Returns false if the index is beyond the current capacity.
Example:
var bits = new BitSet (8);
bits.set (3);
assert (bits.get (3));
assert (!bits.get (4));
| index |
the zero-based bit index. |
|
true if the bit is 1, false if 0 or out of range. |