Vector<T>.RightShift(Vector<T>, Int32) 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
按指定量向量向右移动 (signed) 的每个元素。
public:
static System::Numerics::Vector<T> operator >>(System::Numerics::Vector<T> value, int shiftCount);
public static System.Numerics.Vector<T> operator >>(System.Numerics.Vector<T> value, int shiftCount);
static member ( >>> ) : System.Numerics.Vector<'T> * int -> System.Numerics.Vector<'T>
Public Shared Operator >> (value As Vector(Of T), shiftCount As Integer) As Vector(Of T)
参数
- value
- Vector<T>
要移动其元素的向量。
- shiftCount
- Int32
移动每个元素所依据的位数。
返回
一个向量,其元素被 shiftCount右移。