Computer the quotient and remainder of two 128-bit integers.
Namespace:
Meta.Numerics.Extended
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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
Parameters
- x
- Type: Meta.Numerics.ExtendedInt128
The dividend. - y
- Type: Meta.Numerics.ExtendedInt128
The divisor. - r
- Type: Meta.Numerics.ExtendedInt128
The remainder x % y.
Return Value
Type:
Int128The quotient
x /
y.
See Also