Int128DivRem Method
Computer the quotient and remainder of two 128-bit integers.
Namespace: Meta.Numerics.ExtendedAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static Int128 DivRem(
Int128 x,
Int128 y,
out Int128 r
)
Public Shared Function DivRem (
x As Int128,
y As Int128,
<OutAttribute> ByRef r As Int128
) As Int128
public:
static Int128 DivRem(
Int128 x,
Int128 y,
[OutAttribute] Int128% r
)
static member DivRem :
x : Int128 *
y : Int128 *
r : Int128 byref -> Int128
- x Int128
- The dividend.
- y Int128
- The divisor.
- r Int128
- The remainder x % y.
Int128The quotient
x /
y.