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

◆ ToVector128< T >()

static Vector128< T > System.Runtime.Intrinsics.Vector64< T >.ToVector128< T > ( this Vector64< T > vector)
inlinestatic
Type Constraints
T :struct 

Definition at line 558 of file Vector64.cs.

558 : struct
559 {
560 ThrowHelper.ThrowForUnsupportedIntrinsicsVectorBaseType<T>();
561 Vector128<T> source = Vector128<T>.Zero;
562 Unsafe.As<Vector128<T>, Vector64<T>>(ref source) = vector;
563 return source;
564 }

References System.source, and System.Runtime.Intrinsics.Vector128< T >.Zero.