| 271 | } |
| 272 | |
| 273 | CEL_ABSL_VISIT_CONSTEXPR bool operator==(Number other) const { |
| 274 | return Compare(other) == internal::ComparisonResult::kEqual; |
| 275 | } |
| 276 | |
| 277 | CEL_ABSL_VISIT_CONSTEXPR bool operator!=(Number other) const { |
| 278 | return Compare(other) != internal::ComparisonResult::kEqual; |