BigInteger.ClearBit(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 a BigInteger whose value is equivalent to this BigInteger with the designated bit cleared.
[Android.Runtime.Register("clearBit", "(I)Ljava/math/BigInteger;", "GetClearBit_IHandler")]
public virtual Java.Math.BigInteger ClearBit (int n);
[<Android.Runtime.Register("clearBit", "(I)Ljava/math/BigInteger;", "GetClearBit_IHandler")>]
abstract member ClearBit : int -> Java.Math.BigInteger
override this.ClearBit : int -> Java.Math.BigInteger
Parameters
- n
- Int32
index of bit to clear.
Returns
this & ~(1<<n)
- Attributes
Exceptions
if n
.
Remarks
Java documentation for java.math.BigInteger.clearBit(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.