Table of Contents

Method ShiftLeft

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

ShiftLeft(Vector<sbyte>, int)

Shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量). Mnemonic: rt[i] := value[i] << shiftAmount, shiftAmount &= (T.BitSize-1).

[CLSCompliant(false)]
public static Vector<sbyte> ShiftLeft(Vector<sbyte> value, int shiftAmount)

Parameters

value Vector<sbyte>

The vector whose elements are to be shifted (要移位其元素的向量).

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数).

Returns

Vector<sbyte>

A vector whose elements where shifted left by shiftAmount (每个元素的左移 shiftAmount 位的一个向量).

See Also

ShiftLeft(Vector<byte>, int)

Shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量). Mnemonic: rt[i] := value[i] << shiftAmount, shiftAmount &= (T.BitSize-1).

public static Vector<byte> ShiftLeft(Vector<byte> value, int shiftAmount)

Parameters

value Vector<byte>

The vector whose elements are to be shifted (要移位其元素的向量).

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数).

Returns

Vector<byte>

A vector whose elements where shifted left by shiftAmount (每个元素的左移 shiftAmount 位的一个向量).

See Also

ShiftLeft(Vector<short>, int)

Shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量). Mnemonic: rt[i] := value[i] << shiftAmount, shiftAmount &= (T.BitSize-1).

public static Vector<short> ShiftLeft(Vector<short> value, int shiftAmount)

Parameters

value Vector<short>

The vector whose elements are to be shifted (要移位其元素的向量).

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数).

Returns

Vector<short>

A vector whose elements where shifted left by shiftAmount (每个元素的左移 shiftAmount 位的一个向量).

See Also

ShiftLeft(Vector<ushort>, int)

Shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量). Mnemonic: rt[i] := value[i] << shiftAmount, shiftAmount &= (T.BitSize-1).

[CLSCompliant(false)]
public static Vector<ushort> ShiftLeft(Vector<ushort> value, int shiftAmount)

Parameters

value Vector<ushort>

The vector whose elements are to be shifted (要移位其元素的向量).

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数).

Returns

Vector<ushort>

A vector whose elements where shifted left by shiftAmount (每个元素的左移 shiftAmount 位的一个向量).

See Also

ShiftLeft(Vector<int>, int)

Shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量). Mnemonic: rt[i] := value[i] << shiftAmount, shiftAmount &= (T.BitSize-1).

public static Vector<int> ShiftLeft(Vector<int> value, int shiftAmount)

Parameters

value Vector<int>

The vector whose elements are to be shifted (要移位其元素的向量).

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数).

Returns

Vector<int>

A vector whose elements where shifted left by shiftAmount (每个元素的左移 shiftAmount 位的一个向量).

See Also

ShiftLeft(Vector<uint>, int)

Shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量). Mnemonic: rt[i] := value[i] << shiftAmount, shiftAmount &= (T.BitSize-1).

[CLSCompliant(false)]
public static Vector<uint> ShiftLeft(Vector<uint> value, int shiftAmount)

Parameters

value Vector<uint>

The vector whose elements are to be shifted (要移位其元素的向量).

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数).

Returns

Vector<uint>

A vector whose elements where shifted left by shiftAmount (每个元素的左移 shiftAmount 位的一个向量).

See Also

ShiftLeft(Vector<long>, int)

Shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量). Mnemonic: rt[i] := value[i] << shiftAmount, shiftAmount &= (T.BitSize-1).

public static Vector<long> ShiftLeft(Vector<long> value, int shiftAmount)

Parameters

value Vector<long>

The vector whose elements are to be shifted (要移位其元素的向量).

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数).

Returns

Vector<long>

A vector whose elements where shifted left by shiftAmount (每个元素的左移 shiftAmount 位的一个向量).

See Also

ShiftLeft(Vector<ulong>, int)

Shifts each element of a vector left by the specified amount (将向量的每个元素左移指定量). Mnemonic: rt[i] := value[i] << shiftAmount, shiftAmount &= (T.BitSize-1).

[CLSCompliant(false)]
public static Vector<ulong> ShiftLeft(Vector<ulong> value, int shiftAmount)

Parameters

value Vector<ulong>

The vector whose elements are to be shifted (要移位其元素的向量).

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数).

Returns

Vector<ulong>

A vector whose elements where shifted left by shiftAmount (每个元素的左移 shiftAmount 位的一个向量).

See Also