UInt128DivRem(UInt128, UInt32, UInt32) Method
Divides a 128-bit unsigned integer by a 32-bit unsigned integer.
Namespace: Meta.Numerics.ExtendedAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static UInt128 DivRem(
UInt128 x,
uint y,
out uint r
)
Public Shared Function DivRem (
x As UInt128,
y As UInteger,
<OutAttribute> ByRef r As UInteger
) As UInt128
public:
static UInt128 DivRem(
UInt128 x,
unsigned int y,
[OutAttribute] unsigned int% r
)
static member DivRem :
x : UInt128 *
y : uint32 *
r : uint32 byref -> UInt128
- x UInt128
- The 128-bit dividend.
- y UInt32
- The 32-bit divisor.
- r UInt32
- The remainder.
UInt128The quotient.