BitSet.NextClearBit(Int32) Method

Definition

Returns the index of the first bit that is set to false that occurs on or after the specified starting index.

[Android.Runtime.Register("nextClearBit", "(I)I", "GetNextClearBit_IHandler")]
public virtual int NextClearBit (int fromIndex);
[<Android.Runtime.Register("nextClearBit", "(I)I", "GetNextClearBit_IHandler")>]
abstract member NextClearBit : int -> int
override this.NextClearBit : int -> int

Parameters

fromIndex
Int32

the index to start checking from (inclusive)

Returns

the index of the next clear bit

Attributes

Exceptions

Remarks

Returns the index of the first bit that is set to false that occurs on or after the specified starting index.

Added in 1.4.

Java documentation for java.util.BitSet.nextClearBit(.*int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to