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

◆ AsVector< T >()

static Vector< T > System.Runtime.Intrinsics.Vector128< T >.AsVector< T > ( this Vector128< T > value)
inlinestatic
Type Constraints
T :struct 

Definition at line 129 of file Vector128.cs.

129 : struct
130 {
131 ThrowHelper.ThrowForUnsupportedIntrinsicsVectorBaseType<T>();
132 Vector<T> source = default(Vector<T>);
133 Unsafe.WriteUnaligned(ref Unsafe.As<Vector<T>, byte>(ref source), value);
134 return source;
135 }

References System.source, and System.value.