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

Definizione

Sposta (con segno) ogni elemento di un vettore a destra della quantità specificata.

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)

Parametri

value
Vector<T>

Vettore i cui elementi devono essere spostati.

shiftCount
Int32

Numero di bit in base al quale spostare ogni elemento.

Restituisce

Vettore i cui elementi vengono spostati a destra da shiftCount.

Si applica a