Operations<T>.LeftShift Method

Shifts a value the specified number of bits to the left.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static T LeftShift(
	T value,
	int count
)

Parameters

value  T
The value whose bits are to be shifted.
count  Int32
The number of bits to shift value to the left.

Return Value

T
value shifted to the left by count bits.

See Also