BitSet.clear

Sets the bits from the specified {@code fromIndex} (inclusive) to the specified {@code toIndex} (exclusive) to {@code false}.

@param fromIndex index of the first bit to be cleared @param toIndex index after the last bit to be cleared @throws IndexOutOfBoundsException if {@code fromIndex} is negative, or {@code toIndex} is negative, or {@code fromIndex} is larger than {@code toIndex}

  1. void clear(size_t bitIndex)
  2. void clear(size_t fromIndex, size_t toIndex)
    class BitSet
    void
    clear
    (
    size_t fromIndex
    ,
    size_t toIndex
    )
  3. void clear()

Meta