Method Narrow_Shuffle
- Namespace
- Zyl.VectorTraits.Impl.AVector128
- Assembly
- VectorTraits.dll
Narrow_Shuffle(Vector128<ulong>, Vector128<ulong>)
Narrows two Vector128<T> instances into one Vector128<T>" (将两个 Vector128<T> 实例缩窄为一个 Vector128<T> ). />.
Mnemonic: rt[i] := narrow(element_ref(i, lower, upper))
.
[CLSCompliant(false)]
public static Vector128<uint> Narrow_Shuffle(Vector128<ulong> lower, Vector128<ulong> upper)
Parameters
lower
Vector128<ulong>The vector that will be narrowed to the lower half of the result vector (构成缩窄结果向量的低半部分向量).
upper
Vector128<ulong>The vector that will be narrowed to the upper half of the result vector (构成缩窄结果向量的高半部分向量).
Returns
- Vector128<uint>
A Vector128<T> containing elements narrowed from
lower
andupper
(一个包含了来自lower
与upper
缩窄元素的向量).
- See Also