Vector<T>.LeftShift(Vector<T>, Int32) 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將向量左方的每個元素移出指定的量。
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
移。