Method ShiftLeft_Args
- Namespace
- Zyl.VectorTraits.Impl.AVector
- Assembly
- VectorTraits.dll
ShiftLeft_Args(Vector<sbyte>, int, out Vector<sbyte>)
Arguments calculation for shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量的参数计算). Provide arguments for ShiftLeft_Core (为 ShiftLeft_Core 提供参数).
Mnemonic: rt[i] := value[i] << shiftAmount
, shiftAmount &= (T.BitSize-1)
.
[CLSCompliant(false)]
public override Vector<sbyte> ShiftLeft_Args(Vector<sbyte> dummy, int shiftAmount, out Vector<sbyte> args1)
Parameters
dummy
Vector<sbyte>Not actually used, it is only used to distinguish overloaded methods (实际上没有使用, 它仅用于区分重载方法)..
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数).
args1
Vector<sbyte>Returns arguments 1 (返回参数1). Used for ShiftLeft_Core .
Returns
- See Also
ShiftLeft_Args(Vector<byte>, int, out Vector<byte>)
Arguments calculation for shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量的参数计算). Provide arguments for ShiftLeft_Core (为 ShiftLeft_Core 提供参数).
Mnemonic: rt[i] := value[i] << shiftAmount
, shiftAmount &= (T.BitSize-1)
.
public override Vector<byte> ShiftLeft_Args(Vector<byte> dummy, int shiftAmount, out Vector<byte> args1)
Parameters
dummy
Vector<byte>Not actually used, it is only used to distinguish overloaded methods (实际上没有使用, 它仅用于区分重载方法)..
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数).
args1
Vector<byte>Returns arguments 1 (返回参数1). Used for ShiftLeft_Core .
Returns
- See Also
ShiftLeft_Args(Vector<int>, int, out Vector<int>)
Arguments calculation for shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量的参数计算). Provide arguments for ShiftLeft_Core (为 ShiftLeft_Core 提供参数).
Mnemonic: rt[i] := value[i] << shiftAmount
, shiftAmount &= (T.BitSize-1)
.
public override Vector<int> ShiftLeft_Args(Vector<int> dummy, int shiftAmount, out Vector<int> args1)
Parameters
dummy
Vector<int>Not actually used, it is only used to distinguish overloaded methods (实际上没有使用, 它仅用于区分重载方法)..
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数).
args1
Vector<int>Returns arguments 1 (返回参数1). Used for ShiftLeft_Core .
Returns
- See Also
ShiftLeft_Args(Vector<uint>, int, out Vector<uint>)
Arguments calculation for shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量的参数计算). Provide arguments for ShiftLeft_Core (为 ShiftLeft_Core 提供参数).
Mnemonic: rt[i] := value[i] << shiftAmount
, shiftAmount &= (T.BitSize-1)
.
[CLSCompliant(false)]
public override Vector<uint> ShiftLeft_Args(Vector<uint> dummy, int shiftAmount, out Vector<uint> args1)
Parameters
dummy
Vector<uint>Not actually used, it is only used to distinguish overloaded methods (实际上没有使用, 它仅用于区分重载方法)..
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数).
args1
Vector<uint>Returns arguments 1 (返回参数1). Used for ShiftLeft_Core .
Returns
- See Also
ShiftLeft_Args(Vector<long>, int, out Vector<long>)
Arguments calculation for shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量的参数计算). Provide arguments for ShiftLeft_Core (为 ShiftLeft_Core 提供参数).
Mnemonic: rt[i] := value[i] << shiftAmount
, shiftAmount &= (T.BitSize-1)
.
public override Vector<long> ShiftLeft_Args(Vector<long> dummy, int shiftAmount, out Vector<long> args1)
Parameters
dummy
Vector<long>Not actually used, it is only used to distinguish overloaded methods (实际上没有使用, 它仅用于区分重载方法)..
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数).
args1
Vector<long>Returns arguments 1 (返回参数1). Used for ShiftLeft_Core .
Returns
- See Also
ShiftLeft_Args(Vector<ulong>, int, out Vector<ulong>)
Arguments calculation for shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量的参数计算). Provide arguments for ShiftLeft_Core (为 ShiftLeft_Core 提供参数).
Mnemonic: rt[i] := value[i] << shiftAmount
, shiftAmount &= (T.BitSize-1)
.
[CLSCompliant(false)]
public override Vector<ulong> ShiftLeft_Args(Vector<ulong> dummy, int shiftAmount, out Vector<ulong> args1)
Parameters
dummy
Vector<ulong>Not actually used, it is only used to distinguish overloaded methods (实际上没有使用, 它仅用于区分重载方法)..
shiftAmount
intThe number of bits by which to shift each element (每个元素的移位位数).
args1
Vector<ulong>Returns arguments 1 (返回参数1). Used for ShiftLeft_Core .
Returns
- See Also