UInt128RightShift Operator

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

Definition

Namespace: Meta.Numerics.Extended
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static UInt128 operator >>(
	UInt128 u,
	int n
)

Parameters

u  UInt128
The integer to be shifted.
n  Int32
The number of places to shift.

Return Value

UInt128
The shifted integer.

See Also