UInt128RightShift Operator |
Returns the unsigned 128-bit binary integer obtained
by shifting all bits right 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
)
Public Shared Operator >> (
u As UInt128,
n As Integer
) As UInt128
public:
static UInt128 operator >>(
UInt128 u,
int n
)
static let inline (>>>)
u : UInt128 *
n : int : UInt128
Parameters
- u
- Type: Meta.Numerics.ExtendedUInt128
The integer to be shifted. - n
- Type: SystemInt32
The number of places to shift.
Return Value
Type:
UInt128The shifted integer.
See Also