Click or drag to resize

Int128DivRem Method

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
)

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: Int128
The quotient x / y.
See Also