BigInteger.SqrtAndRemainder Method

Definition

Returns an array of two BigIntegers containing the integer square root s of this and its remainder this - s*s, respectively.

[Android.Runtime.Register("sqrtAndRemainder", "()[Ljava/math/BigInteger;", "GetSqrtAndRemainderHandler", ApiSince=33)]
public virtual Java.Math.BigInteger[] SqrtAndRemainder ();
[<Android.Runtime.Register("sqrtAndRemainder", "()[Ljava/math/BigInteger;", "GetSqrtAndRemainderHandler", ApiSince=33)>]
abstract member SqrtAndRemainder : unit -> Java.Math.BigInteger[]
override this.SqrtAndRemainder : unit -> Java.Math.BigInteger[]

Returns

an array of two BigIntegers with the integer square root at offset 0 and the remainder at offset 1

Attributes

Remarks

Java documentation for java.math.BigInteger.sqrtAndRemainder().

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