Method ExToVector256
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
ExToVector256<T>(Vector128<T>)
Converts the given vector to a new Vector256<T> with the lower 128-bits set to the value of the given vector and the upper 128-bits initialized to zero (将给定向量转换为新 Vector256<T> 向量,其中较低的 128 位设置为给定向量的值,并将高 128 位初始化为零).
public static Vector256<T> ExToVector256<T>(this Vector128<T> vector) where T : struct
Parameters
vector
Vector128<T>The vector to extend (要扩展的向量).
Returns
- Vector256<T>
A new Vector256<T> with the lower 128-bits set to the value of
vector
and the upper 128-bits initialized to zero (一个新的 Vector256<T>, 将较低的 128 位设置为vector
的值, 而高 128 位初始化为零).
Type Parameters
T
The type of the input vector element (输入向量元素的类型).