Vector<T>.LeftShift(Vector<T>, Int32) Оператор

Определение

Сдвигает каждый элемент вектора влево на указанную величину.

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.

Применяется к