Table of Contents

Method ShiftLeft_Fast

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

ShiftLeft_Fast(Vector256<sbyte>, int)

Shifts each element of a vector left by the specified amount - Fast (将向量的每个元素左移指定量 - 快速). No check shiftAmount, please use LimitShiftAmount<T>(int) first. Mnemonic: rt[i] := value[i] << shiftAmount.

[CLSCompliant(false)]
public static Vector256<sbyte> ShiftLeft_Fast(Vector256<sbyte> value, int shiftAmount)

Parameters

value Vector256<sbyte>

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

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数). The valid range is 0~7 (有效范围是 0~7).

Returns

Vector256<sbyte>

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

See Also

ShiftLeft_Fast(Vector256<byte>, int)

Shifts each element of a vector left by the specified amount - Fast (将向量的每个元素左移指定量 - 快速). No check shiftAmount, please use LimitShiftAmount<T>(int) first. Mnemonic: rt[i] := value[i] << shiftAmount.

public static Vector256<byte> ShiftLeft_Fast(Vector256<byte> value, int shiftAmount)

Parameters

value Vector256<byte>

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

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数). The valid range is 0~7 (有效范围是 0~7).

Returns

Vector256<byte>

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

See Also

ShiftLeft_Fast(Vector256<short>, int)

Shifts each element of a vector left by the specified amount - Fast (将向量的每个元素左移指定量 - 快速). No check shiftAmount, please use LimitShiftAmount<T>(int) first. Mnemonic: rt[i] := value[i] << shiftAmount.

public static Vector256<short> ShiftLeft_Fast(Vector256<short> value, int shiftAmount)

Parameters

value Vector256<short>

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

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数). The valid range is 0~15 (有效范围是 0~15).

Returns

Vector256<short>

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

See Also

ShiftLeft_Fast(Vector256<ushort>, int)

Shifts each element of a vector left by the specified amount - Fast (将向量的每个元素左移指定量 - 快速). No check shiftAmount, please use LimitShiftAmount<T>(int) first. Mnemonic: rt[i] := value[i] << shiftAmount.

[CLSCompliant(false)]
public static Vector256<ushort> ShiftLeft_Fast(Vector256<ushort> value, int shiftAmount)

Parameters

value Vector256<ushort>

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

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数). The valid range is 0~15 (有效范围是 0~15).

Returns

Vector256<ushort>

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

See Also

ShiftLeft_Fast(Vector256<int>, int)

Shifts each element of a vector left by the specified amount - Fast (将向量的每个元素左移指定量 - 快速). No check shiftAmount, please use LimitShiftAmount<T>(int) first. Mnemonic: rt[i] := value[i] << shiftAmount.

public static Vector256<int> ShiftLeft_Fast(Vector256<int> value, int shiftAmount)

Parameters

value Vector256<int>

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

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数). The valid range is 0~31 (有效范围是 0~31).

Returns

Vector256<int>

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

See Also

ShiftLeft_Fast(Vector256<uint>, int)

Shifts each element of a vector left by the specified amount - Fast (将向量的每个元素左移指定量 - 快速). No check shiftAmount, please use LimitShiftAmount<T>(int) first. Mnemonic: rt[i] := value[i] << shiftAmount.

[CLSCompliant(false)]
public static Vector256<uint> ShiftLeft_Fast(Vector256<uint> value, int shiftAmount)

Parameters

value Vector256<uint>

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

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数). The valid range is 0~31 (有效范围是 0~31).

Returns

Vector256<uint>

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

See Also

ShiftLeft_Fast(Vector256<long>, int)

Shifts each element of a vector left by the specified amount - Fast (将向量的每个元素左移指定量 - 快速). No check shiftAmount, please use LimitShiftAmount<T>(int) first. Mnemonic: rt[i] := value[i] << shiftAmount.

public static Vector256<long> ShiftLeft_Fast(Vector256<long> value, int shiftAmount)

Parameters

value Vector256<long>

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

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数). The valid range is 0~63 (有效范围是 0~63).

Returns

Vector256<long>

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

See Also

ShiftLeft_Fast(Vector256<ulong>, int)

Shifts each element of a vector left by the specified amount - Fast (将向量的每个元素左移指定量 - 快速). No check shiftAmount, please use LimitShiftAmount<T>(int) first. Mnemonic: rt[i] := value[i] << shiftAmount.

[CLSCompliant(false)]
public static Vector256<ulong> ShiftLeft_Fast(Vector256<ulong> value, int shiftAmount)

Parameters

value Vector256<ulong>

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

shiftAmount int

The number of bits by which to shift each element (每个元素的移位位数). The valid range is 0~63 (有效范围是 0~63).

Returns

Vector256<ulong>

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

See Also