MCPcopy Create free account
hub / github.com/apache/arrow / operator()

Function operator()

cpp/src/arrow/compute/expression.cc:1074–1076  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1072 std::unordered_set<Expression, Expression::Hash> set_;
1073
1074 bool operator()(const Expression& expr) const {
1075 return set_.find(expr) != set_.end();
1076 }
1077
1078 void Add(std::vector<Expression> exprs) {
1079 std::move(exprs.begin(), exprs.end(), std::inserter(set_, set_.end()));

Callers

nothing calls this directly

Calls 9

PriorityFunction · 0.85
VisitFunction · 0.70
fieldFunction · 0.50
MakeFunction · 0.50
schemaFunction · 0.50
findMethod · 0.45
endMethod · 0.45
sizeMethod · 0.45
typeMethod · 0.45

Tested by

no test coverage detected