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