Vector<T>.UnsignedRightShift(Vector<T>, Int32) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Shifts (unsigned) each element of a vector right by the specified amount.
public:
static System::Numerics::Vector<T> op_UnsignedRightShift(System::Numerics::Vector<T> value, int shiftCount);
public static System.Numerics.Vector<T> op_UnsignedRightShift (System.Numerics.Vector<T> value, int shiftCount);
static member op_UnsignedRightShift : System.Numerics.Vector<'T> * int -> System.Numerics.Vector<'T>
Public Shared op_UnsignedRightShift (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
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.