UInt128DivRem Method (UInt128, UInt128, UInt128) |
Computes the quotient and remaineder of two unsigned 128-bit integers.
Namespace:
Meta.Numerics.Extended
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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
Parameters
- x
- Type: Meta.Numerics.ExtendedUInt128
The dividend. - y
- Type: Meta.Numerics.ExtendedUInt128
The divisor. - r
- Type: Meta.Numerics.ExtendedUInt128
The remainder.
Return Value
Type:
UInt128The quotient.
See Also