Int32.RotateLeft(Int32, Int32) Method

Definition

Rotates a value left by a given amount.

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

Parameters

value
Int32

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