void clearRange(int fromInclusive, int toExclusive) => _bits.removeWhere((int bit) => bit >= fromInclusive && bit < toExclusive);