BigInteger.TestBit(Int32) Method

Definition

Returns true if and only if the designated bit is set.

[Android.Runtime.Register("testBit", "(I)Z", "GetTestBit_IHandler")]
public virtual bool TestBit (int n);
[<Android.Runtime.Register("testBit", "(I)Z", "GetTestBit_IHandler")>]
abstract member TestBit : int -> bool
override this.TestBit : int -> bool

Parameters

n
Int32

index of bit to test.

Returns

true if and only if the designated bit is set.

Attributes

Exceptions

Remarks

Returns true if and only if the designated bit is set. (Computes ((this & (1<<n)) != 0).)

Java documentation for java.math.BigInteger.testBit(.*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