| 255 | } |
| 256 | |
| 257 | CEL_ABSL_VISIT_CONSTEXPR bool operator<=(Number other) const { |
| 258 | internal::ComparisonResult cmp = Compare(other); |
| 259 | return cmp != internal::ComparisonResult::kGreater && |
| 260 | cmp != internal::ComparisonResult::kNanInequal; |
| 261 | } |
| 262 | |
| 263 | CEL_ABSL_VISIT_CONSTEXPR bool operator>(Number other) const { |
| 264 | return Compare(other) == internal::ComparisonResult::kGreater; |