Operations<T>.RightShift Method

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

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static T RightShift(
	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 right.

Return Value

T
value shifted to the right by count bits.

See Also