UInt128DivRem Method (UInt128, UInt32, UInt32) |
Divides a 128-bit unsigned integer by a 32-bit unsigned integer.
Namespace:
Meta.Numerics.Extended
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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
Parameters
- x
- Type: Meta.Numerics.ExtendedUInt128
The 128-bit dividend. - y
- Type: SystemUInt32
The 32-bit divisor. - r
- Type: SystemUInt32
The remainder.
Return Value
Type:
UInt128The quotient.
See Also