MCPcopy Create free account
hub / github.com/apache/arrow / ArgumentsAndFlippedArguments

Function ArgumentsAndFlippedArguments

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

Source from the content-addressed store, hash-verified

800namespace {
801
802std::array<std::pair<const Expression&, const Expression&>, 2>
803ArgumentsAndFlippedArguments(const Expression::Call& call) {
804 DCHECK_EQ(call.arguments.size(), 2);
805 return {std::pair<const Expression&, const Expression&>{call.arguments[0],
806 call.arguments[1]},
807 std::pair<const Expression&, const Expression&>{call.arguments[1],
808 call.arguments[0]}};
809}
810
811} // namespace
812

Callers 1

FoldConstantsFunction · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected