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

◆ As< T, U >()

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

Definition at line 17 of file Vector256.cs.

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