Java.Math.BigInteger.AndNot Method
Returns a BigInteger whose value is this & ~value.

Syntax

[Android.Runtime.Register("andNot", "(Ljava/math/BigInteger;)Ljava/math/BigInteger;", "GetAndNot_Ljava_math_BigInteger_Handler")]
public virtual BigInteger AndNot (BigInteger val)

Parameters

value
value to be not'ed and then and'ed with this.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.NullPointerExceptionif value == null.

Remarks

Returns a BigInteger whose value is this & ~value. Evaluating x.andNot(value) returns the same result as x.and(value.not()).

Implementation Note: Usage of this method is not recommended as the current implementation is not efficient.

[Android Documentation]

Requirements

Namespace: Java.Math
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1