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

◆ IsSupported

bool System.Runtime.Intrinsics.Vector256< T >.IsSupported
staticgetpackage

Definition at line 1049 of file Vector256.cs.

1050 {
1051 [MethodImpl(MethodImplOptions.AggressiveInlining)]
1052 get
1053 {
1054 if (!(typeof(T) == typeof(byte)) && !(typeof(T) == typeof(sbyte)) && !(typeof(T) == typeof(short)) && !(typeof(T) == typeof(ushort)) && !(typeof(T) == typeof(int)) && !(typeof(T) == typeof(uint)) && !(typeof(T) == typeof(long)) && !(typeof(T) == typeof(ulong)) && !(typeof(T) == typeof(float)))
1055 {
1056 return typeof(T) == typeof(double);
1057 }
1058 return true;
1059 }
1060 }