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
형식U
으로 Vector128<T> 재해석되었습니다.
예외
vector
(T
)의 형식 또는 대상의 유형(U
)이 지원되지 않습니다.