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

Function CelValueLessThan

eval/public/set_util.cc:135–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

133}
134
135bool CelValueLessThan(CelValue lhs, CelValue rhs) {
136 return lhs.InternalVisit<int>(ComparisonVisitor(rhs)) < 0;
137}
138
139bool CelValueEqual(CelValue lhs, CelValue rhs) {
140 return lhs.InternalVisit<int>(ComparisonVisitor(rhs)) == 0;

Callers 2

TEST_PFunction · 0.85
TESTFunction · 0.85

Calls 1

ComparisonVisitorClass · 0.85

Tested by 2

TEST_PFunction · 0.68
TESTFunction · 0.68