UInt128.LeftShift 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
Syntaxpublic 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.Extended.UInt128
The integer to be shifted. - n
- Type: System.Int32
The number of places to shift.
Return Value
Type:
UInt128The shifted integer.
See Also