Creates a BitSet with a fixed number of bits.
BitSet(this._length) { if (_length < 0) { throw RangeError('BitSet length cannot be negative.'); } _words = Uint32List((_length + 31) ~/ 32); }