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

◆ IsSupported

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

Definition at line 1059 of file Vector128.cs.

1060 {
1061 [MethodImpl(MethodImplOptions.AggressiveInlining)]
1062 get
1063 {
1064 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)))
1065 {
1066 return typeof(T) == typeof(double);
1067 }
1068 return true;
1069 }
1070 }