UInt128DivRem(UInt128, UInt32, UInt32) Method

Divides a 128-bit unsigned integer by a 32-bit unsigned integer.

Definition

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

Parameters

x  UInt128
The 128-bit dividend.
y  UInt32
The 32-bit divisor.
r  UInt32
The remainder.

Return Value

UInt128
The quotient.

See Also