Int64.RotateLeft(Int64, Int32) Method

Definition

Rotates a value left by a given amount.

public:
 static long RotateLeft(long value, int rotateAmount) = System::Numerics::IBinaryInteger<long>::RotateLeft;
public static long RotateLeft (long value, int rotateAmount);
static member RotateLeft : int64 * int -> int64
Public Shared Function RotateLeft (value As Long, rotateAmount As Integer) As Long

Parameters

value
Int64

The value which is rotated left by rotateAmount.

rotateAmount
Int32

The amount by which value is rotated left.

Returns

The result of rotating value left by rotateAmount.

Implements

Applies to