Table of Contents

Method Shuffle_CompareGreater

Namespace
Zyl.VectorTraits.Impl.AVector128
Assembly
VectorTraits.dll

Shuffle_CompareGreater(Vector128<ushort>, Vector128<ushort>)

Shuffle and clear (换位并清零). Creates a new vector by selecting values from an input vector using a set of indices (通过使用一组索引从输入向量中选择值,来创建一个新向量). If the index value is out of range, the element will be cleared (若索引值超出范围, 元素会被清零). Mnemonic: rt[i] := (0<=indices[i] && indices[i]<Count)?( vector[indices[i]] ):0.

[CLSCompliant(false)]
public static Vector128<ushort> Shuffle_CompareGreater(Vector128<ushort> vector, Vector128<ushort> indices)

Parameters

vector Vector128<ushort>

The input vector from which values are selected (从中选择值的输入向量).

indices Vector128<ushort>

The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).

Returns

Vector128<ushort>

A new vector containing the values from vector selected by the given indices (一个新向量,其中包含给定 indicesvector 中选择的值).

See Also

Shuffle_CompareGreater(Vector128<int>, Vector128<int>)

Shuffle and clear (换位并清零). Creates a new vector by selecting values from an input vector using a set of indices (通过使用一组索引从输入向量中选择值,来创建一个新向量). If the index value is out of range, the element will be cleared (若索引值超出范围, 元素会被清零). Mnemonic: rt[i] := (0<=indices[i] && indices[i]<Count)?( vector[indices[i]] ):0.

public static Vector128<int> Shuffle_CompareGreater(Vector128<int> vector, Vector128<int> indices)

Parameters

vector Vector128<int>

The input vector from which values are selected (从中选择值的输入向量).

indices Vector128<int>

The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).

Returns

Vector128<int>

A new vector containing the values from vector selected by the given indices (一个新向量,其中包含给定 indicesvector 中选择的值).

See Also

Shuffle_CompareGreater(Vector128<uint>, Vector128<uint>)

Shuffle and clear (换位并清零). Creates a new vector by selecting values from an input vector using a set of indices (通过使用一组索引从输入向量中选择值,来创建一个新向量). If the index value is out of range, the element will be cleared (若索引值超出范围, 元素会被清零). Mnemonic: rt[i] := (0<=indices[i] && indices[i]<Count)?( vector[indices[i]] ):0.

[CLSCompliant(false)]
public static Vector128<uint> Shuffle_CompareGreater(Vector128<uint> vector, Vector128<uint> indices)

Parameters

vector Vector128<uint>

The input vector from which values are selected (从中选择值的输入向量).

indices Vector128<uint>

The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).

Returns

Vector128<uint>

A new vector containing the values from vector selected by the given indices (一个新向量,其中包含给定 indicesvector 中选择的值).

See Also

Shuffle_CompareGreater(Vector128<ulong>, Vector128<ulong>)

Shuffle and clear (换位并清零). Creates a new vector by selecting values from an input vector using a set of indices (通过使用一组索引从输入向量中选择值,来创建一个新向量). If the index value is out of range, the element will be cleared (若索引值超出范围, 元素会被清零). Mnemonic: rt[i] := (0<=indices[i] && indices[i]<Count)?( vector[indices[i]] ):0.

[CLSCompliant(false)]
public static Vector128<ulong> Shuffle_CompareGreater(Vector128<ulong> vector, Vector128<ulong> indices)

Parameters

vector Vector128<ulong>

The input vector from which values are selected (从中选择值的输入向量).

indices Vector128<ulong>

The per-element indices used to select a value from vector (用于从 vector 中选择值的每个元素索引).

Returns

Vector128<ulong>

A new vector containing the values from vector selected by the given indices (一个新向量,其中包含给定 indicesvector 中选择的值).

See Also