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

◆ WithLower< T >()

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

Definition at line 944 of file Vector128.cs.

944 : struct
945 {
947 {
948 }
949 return SoftwareFallback(vector, value);
950 static Vector128<T> SoftwareFallback(Vector128<T> vector, Vector64<T> value)
951 {
952 ThrowHelper.ThrowForUnsupportedIntrinsicsVectorBaseType<T>();
953 Vector128<T> source = vector;
954 Unsafe.As<Vector128<T>, Vector64<T>>(ref source) = value;
955 return source;
956 }
957 }

References System.Runtime.Intrinsics.Arm.AdvSimd.IsSupported, System.source, and System.value.