MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / operator>=

Method operator>=

internal/number.h:267–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 1

CompareFunction · 0.85

Tested by

no test coverage detected