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