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

◆ IsSupported

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

Definition at line 625 of file Vector64.cs.

626 {
627 [MethodImpl(MethodImplOptions.AggressiveInlining)]
628 get
629 {
630 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)))
631 {
632 return typeof(T) == typeof(double);
633 }
634 return true;
635 }
636 }