BitSet.NextClearBit(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
if index
.
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.