BigInteger.TestBit(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 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
if n
.
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.