Computes the quotient and remainder of two
BigInteger numbers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigInteger DivRem(
BigInteger left,
BigInteger right,
out BigInteger r
)
Public Shared Function DivRem (
left As BigInteger,
right As BigInteger,
<OutAttribute> ByRef r As BigInteger
) As BigInteger
public:
static BigInteger DivRem(
BigInteger left,
BigInteger right,
[OutAttribute] BigInteger% r
)
static member DivRem :
left : BigInteger *
right : BigInteger *
r : BigInteger byref -> BigInteger
Parameters
- left
- Type: Extreme.MathematicsBigInteger
The dividend. - right
- Type: Extreme.MathematicsBigInteger
The divisor. - r
- Type: Extreme.MathematicsBigInteger
On return, the remainder.
Return Value
Type:
BigIntegerThe quotient of
left and
right.
Reference