Sets the bit at the specified index to true. @param bitIndex a bit index @return true if this BitSet changed as a result of the call @throws IndexOutOfBoundsException if the specified index is negative
(int bitIndex)
| 52 | * @throws IndexOutOfBoundsException if the specified index is negative |
| 53 | */ |
| 54 | boolean set(int bitIndex); |
| 55 | |
| 56 | /** |
| 57 | * Sets the bit at the specified index to the specified value. |
no outgoing calls