- set(int) - Method in class java.util.BitSet
-
Sets the bit at the specified index to true
.
- set(int, boolean) - Method in class java.util.BitSet
-
Sets the bit at the specified index to the specified value.
- set(int, int) - Method in class java.util.BitSet
-
Sets the bits from the specified fromIndex
(inclusive) to the specified toIndex
(exclusive) to
true
.
- set(int, int, boolean) - Method in class java.util.BitSet
-
Sets the bits from the specified fromIndex
(inclusive) to the specified toIndex
(exclusive) to
the specified value.
- size() - Method in class java.util.BitSet
-
Returns the number of bits of space actually in use by this BitSet
to represent bit values.