@name Comparison operators (ordered) @{
| 138 | /// @name Comparison operators (ordered) |
| 139 | /// @{ |
| 140 | constexpr bool operator==(Half r) const |
| 141 | { |
| 142 | return !(IsNaN() || r.IsNaN()) && Equal(r); |
| 143 | } |
| 144 | constexpr bool operator<(Half r) const |
| 145 | { |
| 146 | return !(IsNaN() || r.IsNaN()) && Less(r); |