| 251 | } |
| 252 | |
| 253 | CEL_ABSL_VISIT_CONSTEXPR bool operator<(Number other) const { |
| 254 | return Compare(other) == internal::ComparisonResult::kLesser; |
| 255 | } |
| 256 | |
| 257 | CEL_ABSL_VISIT_CONSTEXPR bool operator<=(Number other) const { |
| 258 | internal::ComparisonResult cmp = Compare(other); |