BigInteger.RotateLeft(BigInteger, Int32) Method

Definition

Rotates a value left by a given amount.

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

Parameters

value
BigInteger

The value that's 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