Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ As< T, U >()

static Vector128< U > System.Runtime.Intrinsics.Vector128< T >.As< T, U > ( this Vector128< T > vector)
inlinestatic
Type Constraints
T :struct 
U :struct 

Definition at line 18 of file Vector128.cs.

18 : struct where U : struct
19 {
20 ThrowHelper.ThrowForUnsupportedIntrinsicsVectorBaseType<T>();
21 ThrowHelper.ThrowForUnsupportedIntrinsicsVectorBaseType<U>();
22 return Unsafe.As<Vector128<T>, Vector128<U>>(ref vector);
23 }