Vector512<T>.UnsignedRightShift(Vector512<T>, Int32) Operator

Definition

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

public:
 static System::Runtime::Intrinsics::Vector512<T> op_UnsignedRightShift(System::Runtime::Intrinsics::Vector512<T> value, int shiftCount);
public static System.Runtime.Intrinsics.Vector512<T> op_UnsignedRightShift (System.Runtime.Intrinsics.Vector512<T> value, int shiftCount);
static member op_UnsignedRightShift : System.Runtime.Intrinsics.Vector512<'T> * int -> System.Runtime.Intrinsics.Vector512<'T>
Public Shared op_UnsignedRightShift (value As Vector512(Of T), shiftCount As Integer) As Vector512(Of T)

Parameters

value
Vector512<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