Table of Contents

Method ShiftRightLogical_Fast_HwVar

Namespace
Zyl.VectorTraits.Impl.AVector
Assembly
VectorTraits.dll

ShiftRightLogical_Fast_HwVar(Vector<ulong>, int)

Shifts (unsigned) each element of a vector right by the specified amount. - Fast(将向量的每个无符号元素逻辑右移指定量 - 快速). No check shiftAmount, please use LimitShiftAmount<T>(int) first, and shiftAmount must not be 0 . Mnemonic: rt[i] := value[i] >>> shiftAmount.

[CLSCompliant(false)]
public static Vector<ulong> ShiftRightLogical_Fast_HwVar(Vector<ulong> value, int shiftAmount)

Parameters

value Vector<ulong>

The vector whose elements are to be shifted (要移位其元素的向量).

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数). The valid range is 0~63 (有效范围是 0~63).

Returns

Vector<ulong>

A vector whose elements where shifted right by shiftAmount (每个元素的右移 shiftAmount 位的一个向量).

See Also