| 265 | } |
| 266 | |
| 267 | CEL_ABSL_VISIT_CONSTEXPR bool operator>=(Number other) const { |
| 268 | internal::ComparisonResult cmp = Compare(other); |
| 269 | return cmp != internal::ComparisonResult::kLesser && |
| 270 | cmp != internal::ComparisonResult::kNanInequal; |
| 271 | } |
| 272 | |
| 273 | CEL_ABSL_VISIT_CONSTEXPR bool operator==(Number other) const { |
| 274 | return Compare(other) == internal::ComparisonResult::kEqual; |