Method ShiftLeft_Const
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
ShiftLeft_Const(Vector<sbyte>, int)
Shifts each element of a vector left by the specified amount - Const (将向量的每个元素左移指定量 - 常量).
Mnemonic: rt[i] := value[i] << shiftAmount
.
[CLSCompliant(false)]
public static Vector<sbyte> ShiftLeft_Const(Vector<sbyte> value, int shiftAmount)
Parameters
value
Vector<sbyte>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数). The valid range is 1~7 (有效范围是 1~7).
Returns
- Vector<sbyte>
A vector whose elements where shifted left by
shiftAmount
(每个元素的左移shiftAmount
位的一个向量).
- See Also
ShiftLeft_Const(Vector<byte>, int)
Shifts each element of a vector left by the specified amount - Const (将向量的每个元素左移指定量 - 常量).
Mnemonic: rt[i] := value[i] << shiftAmount
.
public static Vector<byte> ShiftLeft_Const(Vector<byte> value, int shiftAmount)
Parameters
value
Vector<byte>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数). The valid range is 1~7 (有效范围是 1~7).
Returns
- Vector<byte>
A vector whose elements where shifted left by
shiftAmount
(每个元素的左移shiftAmount
位的一个向量).
- See Also
ShiftLeft_Const(Vector<short>, int)
Shifts each element of a vector left by the specified amount - Const (将向量的每个元素左移指定量 - 常量).
Mnemonic: rt[i] := value[i] << shiftAmount
.
public static Vector<short> ShiftLeft_Const(Vector<short> value, int shiftAmount)
Parameters
value
Vector<short>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数). The valid range is 1~15 (有效范围是 1~15).
Returns
- Vector<short>
A vector whose elements where shifted left by
shiftAmount
(每个元素的左移shiftAmount
位的一个向量).
- See Also
ShiftLeft_Const(Vector<ushort>, int)
Shifts each element of a vector left by the specified amount - Const (将向量的每个元素左移指定量 - 常量).
Mnemonic: rt[i] := value[i] << shiftAmount
.
[CLSCompliant(false)]
public static Vector<ushort> ShiftLeft_Const(Vector<ushort> value, int shiftAmount)
Parameters
value
Vector<ushort>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数). The valid range is 1~15 (有效范围是 1~15).
Returns
- Vector<ushort>
A vector whose elements where shifted left by
shiftAmount
(每个元素的左移shiftAmount
位的一个向量).
- See Also
ShiftLeft_Const(Vector<int>, int)
Shifts each element of a vector left by the specified amount - Const (将向量的每个元素左移指定量 - 常量).
Mnemonic: rt[i] := value[i] << shiftAmount
.
public static Vector<int> ShiftLeft_Const(Vector<int> value, int shiftAmount)
Parameters
value
Vector<int>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数). The valid range is 1~31 (有效范围是 1~31).
Returns
- See Also
ShiftLeft_Const(Vector<uint>, int)
Shifts each element of a vector left by the specified amount - Const (将向量的每个元素左移指定量 - 常量).
Mnemonic: rt[i] := value[i] << shiftAmount
.
[CLSCompliant(false)]
public static Vector<uint> ShiftLeft_Const(Vector<uint> value, int shiftAmount)
Parameters
value
Vector<uint>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数). The valid range is 1~31 (有效范围是 1~31).
Returns
- Vector<uint>
A vector whose elements where shifted left by
shiftAmount
(每个元素的左移shiftAmount
位的一个向量).
- See Also
ShiftLeft_Const(Vector<long>, int)
Shifts each element of a vector left by the specified amount - Const (将向量的每个元素左移指定量 - 常量).
Mnemonic: rt[i] := value[i] << shiftAmount
.
public static Vector<long> ShiftLeft_Const(Vector<long> value, int shiftAmount)
Parameters
value
Vector<long>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数). The valid range is 1~63 (有效范围是 1~63).
Returns
- Vector<long>
A vector whose elements where shifted left by
shiftAmount
(每个元素的左移shiftAmount
位的一个向量).
- See Also
ShiftLeft_Const(Vector<ulong>, int)
Shifts each element of a vector left by the specified amount - Const (将向量的每个元素左移指定量 - 常量).
Mnemonic: rt[i] := value[i] << shiftAmount
.
[CLSCompliant(false)]
public static Vector<ulong> ShiftLeft_Const(Vector<ulong> value, int shiftAmount)
Parameters
value
Vector<ulong>The vector whose elements are to be shifted (要移位其元素的向量).
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数). The valid range is 1~63 (有效范围是 1~63).
Returns
- Vector<ulong>
A vector whose elements where shifted left by
shiftAmount
(每个元素的左移shiftAmount
位的一个向量).
- See Also