UInt128DivRem(UInt128, UInt128, UInt128) Method

Computes the quotient and remaineder of two unsigned 128-bit integers.

Definition

Namespace: Meta.Numerics.Extended
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static UInt128 DivRem(
	UInt128 x,
	UInt128 y,
	out UInt128 r
)

Parameters

x  UInt128
The dividend.
y  UInt128
The divisor.
r  UInt128
The remainder.

Return Value

UInt128
The quotient.

See Also