Vector<T>.LeftShift(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 each element of a vector left 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 left by shiftCount
.
Applies to
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.