Table of Contents

Method YShuffleInsert_Basic

Namespace
Zyl.VectorTraits.Impl.AVector512
Assembly
VectorTraits.dll

YShuffleInsert_Basic(Vector512<byte>, Vector512<byte>, Vector512<byte>)

Shuffle and insert (换位并插入). 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 elements of the background vector will be inserted (若索引值超出范围, 会插入背景向量的元素). Mnemonic: rt[i] := (0<=indices[i] && indices[i]<Count)?( vector[indices[i]] ):back[i].

public static Vector512<byte> YShuffleInsert_Basic(Vector512<byte> back, Vector512<byte> vector, Vector512<byte> indices)

Parameters

back Vector512<byte>

The background vector (背景向量).

vector Vector512<byte>

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

indices Vector512<byte>

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

Returns

Vector512<byte>

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

See Also

YShuffleInsert_Basic(Vector512<ushort>, Vector512<ushort>, Vector512<ushort>)

Shuffle and insert (换位并插入). 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 elements of the background vector will be inserted (若索引值超出范围, 会插入背景向量的元素). Mnemonic: rt[i] := (0<=indices[i] && indices[i]<Count)?( vector[indices[i]] ):back[i].

[CLSCompliant(false)]
public static Vector512<ushort> YShuffleInsert_Basic(Vector512<ushort> back, Vector512<ushort> vector, Vector512<ushort> indices)

Parameters

back Vector512<ushort>

The background vector (背景向量).

vector Vector512<ushort>

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

indices Vector512<ushort>

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

Returns

Vector512<ushort>

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

See Also

YShuffleInsert_Basic(Vector512<uint>, Vector512<uint>, Vector512<uint>)

Shuffle and insert (换位并插入). 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 elements of the background vector will be inserted (若索引值超出范围, 会插入背景向量的元素). Mnemonic: rt[i] := (0<=indices[i] && indices[i]<Count)?( vector[indices[i]] ):back[i].

[CLSCompliant(false)]
public static Vector512<uint> YShuffleInsert_Basic(Vector512<uint> back, Vector512<uint> vector, Vector512<uint> indices)

Parameters

back Vector512<uint>

The background vector (背景向量).

vector Vector512<uint>

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

indices Vector512<uint>

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

Returns

Vector512<uint>

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

See Also

YShuffleInsert_Basic(Vector512<ulong>, Vector512<ulong>, Vector512<ulong>)

Shuffle and insert (换位并插入). 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 elements of the background vector will be inserted (若索引值超出范围, 会插入背景向量的元素). Mnemonic: rt[i] := (0<=indices[i] && indices[i]<Count)?( vector[indices[i]] ):back[i].

[CLSCompliant(false)]
public static Vector512<ulong> YShuffleInsert_Basic(Vector512<ulong> back, Vector512<ulong> vector, Vector512<ulong> indices)

Parameters

back Vector512<ulong>

The background vector (背景向量).

vector Vector512<ulong>

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

indices Vector512<ulong>

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

Returns

Vector512<ulong>

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

See Also