BitSet


Description:

public BitSet (int size = 64)

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 ());

Parameters:

size

the initial capacity in bits (default 64).