Vector<T>.RightShift(Vector<T>, Int32) Operator

Definition

Shifts (signed) each element of a vector right by the specified amount.

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)

Parameters

value
Vector<T>

The vector whose elements are to be shifted.

shiftCount
Int32

The number of bits by which to shift each element.

Returns

A vector whose elements where shifted right by shiftCount.

Applies to