Creates a BitSet with the specified initial capacity in bits. All bits are initially zero. The BitSet will grow as needed.
Example:
var bits = new BitSet (128);
assert (bits.isEmpty ());
| size |
the initial capacity in bits (default 64). |