Vector512.AsVector<T>(Vector512<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 Vector512<T> 重新解譯為新的 Vector<T>。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Numerics::Vector<T> AsVector(System::Runtime::Intrinsics::Vector512<T> value);
public static System.Numerics.Vector<T> AsVector<T> (this System.Runtime.Intrinsics.Vector512<T> value);
static member AsVector : System.Runtime.Intrinsics.Vector512<'T> -> System.Numerics.Vector<'T>
<Extension()>
Public Function AsVector(Of T) (value As Vector512(Of T)) As Vector(Of T)
類型參數
- T
向量中專案的型別。
參數
- value
- Vector512<T>
要轉換的向量。
傳回
已將 value
重新轉譯為新的 Vector<T>。
例外狀況
不支援 value
(T
) 的類型。