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

◆ As< T, U >()

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

Definition at line 16 of file Vector64.cs.

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