Vector64.ToVector128<T>(Vector64<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定向量轉換為新的 Vector128<T>,將下層 64 位元設定為指定向量值,並將上層 64 位元初始化為零。
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector128<T> ToVector128(System::Runtime::Intrinsics::Vector64<T> vector);
public static System.Runtime.Intrinsics.Vector128<T> ToVector128<T> (this System.Runtime.Intrinsics.Vector64<T> vector) where T : struct;
static member ToVector128 : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> (requires 'T : struct)
<Extension()>
Public Function ToVector128(Of T As Structure) (vector As Vector64(Of T)) As Vector128(Of T)
類型參數
- T
輸入向量的類型。
參數
- vector
- Vector64<T>
要擴充的向量。
傳回
新的 Vector128<T>,其將下層 64 位元設定為 vector
值,上層 64 位元則初始化為零。
例外狀況
不支援 vector
(T
) 的類型。