MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / CelValueCompare

Function CelValueCompare

eval/public/set_util.cc:131–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129} // namespace
130
131int CelValueCompare(CelValue lhs, CelValue rhs) {
132 return lhs.InternalVisit<int>(ComparisonVisitor(rhs));
133}
134
135bool CelValueLessThan(CelValue lhs, CelValue rhs) {
136 return lhs.InternalVisit<int>(ComparisonVisitor(rhs)) < 0;

Callers 1

ComparisonImplFunction · 0.85

Calls 1

ComparisonVisitorClass · 0.85

Tested by

no test coverage detected