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

Function call

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

Source from the content-addressed store, hash-verified

76}
77
78Expression call(std::string function, std::vector<Expression> arguments,
79 std::shared_ptr<compute::FunctionOptions> options) {
80 Expression::Call call;
81 call.function_name = std::move(function);
82 call.arguments = std::move(arguments);
83 call.options = std::move(options);
84 return Expression(std::move(call));
85}
86
87const Datum* Expression::literal() const {
88 if (impl_ == nullptr) return nullptr;

Callers 13

GetOneMethod · 0.70
projectFunction · 0.70
equalFunction · 0.70
not_equalFunction · 0.70
lessFunction · 0.70
less_equalFunction · 0.70
greaterFunction · 0.70
greater_equalFunction · 0.70
is_nullFunction · 0.70
is_validFunction · 0.70
and_Function · 0.70
or_Function · 0.70

Calls 1

ExpressionClass · 0.70

Tested by

no test coverage detected