Click or drag to resize

UInt128LeftShift Operator

Returns the unsigned 128-bit binary integer obtained by shifting all bits left by the given number of places.

Namespace:  Meta.Numerics.Extended
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static UInt128 operator <<(
	UInt128 u,
	int n
)

Parameters

u
Type: Meta.Numerics.ExtendedUInt128
The integer to be shifted.
n
Type: SystemInt32
The number of places to shift.

Return Value

Type: UInt128
The shifted integer.
See Also