Vector128.As<T,U>(Vector128<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
會將 T
類型的 Vector128<T> 重新解譯為 U
類型新的 Vector128<T>。
public:
generic <typename T, typename U>
where T : value class where U : value class[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector128<U> As(System::Runtime::Intrinsics::Vector128<T> vector);
public:
generic <typename TFrom, typename TTo>
where TFrom : value class where TTo : value class[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector128<TTo> As(System::Runtime::Intrinsics::Vector128<TFrom> vector);
public static System.Runtime.Intrinsics.Vector128<U> As<T,U> (this System.Runtime.Intrinsics.Vector128<T> vector) where T : struct where U : struct;
public static System.Runtime.Intrinsics.Vector128<TTo> As<TFrom,TTo> (this System.Runtime.Intrinsics.Vector128<TFrom> vector) where TFrom : struct where TTo : struct;
static member As : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector128<'U (requires 'U : struct)> (requires 'T : struct and 'U : struct)
static member As : System.Runtime.Intrinsics.Vector128<'From (requires 'From : struct)> -> System.Runtime.Intrinsics.Vector128<'o (requires 'o : struct)> (requires 'From : struct and 'o : struct)
<Extension()>
Public Function As(Of T As Structure, U As Structure) (vector As Vector128(Of T)) As Vector128(Of U)
<Extension()>
Public Function As(Of TFrom As Structure, TTo As Structure) (vector As Vector128(Of TFrom)) As Vector128(Of TTo)
類型參數
- T
輸入向量的類型。
- U
應該將向量 vector
重新解譯為的類型。
參數
- vector
- Vector128<T>
要轉換的向量。
傳回
- Vector128<U>
- Vector128<TTo>
vector
重新解譯為 Vector128<T> 型別 U
的 。
例外狀況
不支援 vector
(T
) 的類型,或目標 (U
) 的類型。