45464748495051
/** * Creates an empty bit set. */ public FastBitSet() { service = new BitSetServiceImpl(); }
56575859606162
* @param bits a long array containing a little-endian representation * of a sequence of bits to be used as the initial bits of the * new bit set. */ public FastBitSet(Immutable<long[]> bits) { service = new BitSetServiceImpl(bits.value()); }