Vector<T>.UnsignedRightShift(Vector<T>, Int32) 運算子

定義

(不帶正負號) 指定數量向量的每個元素移位。

public:
 static System::Numerics::Vector<T> op_UnsignedRightShift(System::Numerics::Vector<T> value, int shiftCount);
public static System.Numerics.Vector<T> op_UnsignedRightShift (System.Numerics.Vector<T> value, int shiftCount);
static member op_UnsignedRightShift : System.Numerics.Vector<'T> * int -> System.Numerics.Vector<'T>
Public Shared op_UnsignedRightShift (value As Vector(Of T), shiftCount As Integer) As Vector(Of T)

參數

value
Vector<T>

要移位其元素的向量。

shiftCount
Int32

要移位每個元素的位數。

傳回

向量,其元素向右移位。shiftCount

適用於