| 261 | } |
| 262 | |
| 263 | CEL_ABSL_VISIT_CONSTEXPR bool operator>(Number other) const { |
| 264 | return Compare(other) == internal::ComparisonResult::kGreater; |
| 265 | } |
| 266 | |
| 267 | CEL_ABSL_VISIT_CONSTEXPR bool operator>=(Number other) const { |
| 268 | internal::ComparisonResult cmp = Compare(other); |