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

Function CelValueEqual

eval/public/set_util.cc:139–141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137}
138
139bool CelValueEqual(CelValue lhs, CelValue rhs) {
140 return lhs.InternalVisit<int>(ComparisonVisitor(rhs)) == 0;
141}
142
143bool CelValueGreaterThan(CelValue lhs, CelValue rhs) {
144 return lhs.InternalVisit<int>(ComparisonVisitor(rhs)) > 0;

Callers 3

TEST_PFunction · 0.85
TESTFunction · 0.85
MatchAndExplainMethod · 0.85

Calls 1

ComparisonVisitorClass · 0.85

Tested by 2

TEST_PFunction · 0.68
TESTFunction · 0.68