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