Definition at line 115 of file Half.cs.
116 {
118 {
119 return false;
120 }
123 {
124 if (!flag)
125 {
127 }
128 return true;
129 }
130 if (left._value != right._value)
131 {
132 return (left._value < right._value) ^ flag;
133 }
134 return true;
135 }
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().