Definition at line 88 of file Half.cs.
89 {
91 {
92 return false;
93 }
96 {
97 if (flag)
98 {
100 }
101 return false;
102 }
103 if (left._value != right._value)
104 {
105 return (left._value < right._value) ^ flag;
106 }
107 return false;
108 }
static bool IsNaN(Half value)
static bool IsNegative(Half value)
static bool AreZero(Half left, Half right)
References System.Half._value, System.Half.AreZero(), System.Half.IsNaN(), and System.Half.IsNegative().