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

Method parameter

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

Source from the content-addressed store, hash-verified

91}
92
93const Expression::Parameter* Expression::parameter() const {
94 if (impl_ == nullptr) return nullptr;
95
96 return std::get_if<Parameter>(impl_.get());
97}
98
99const FieldRef* Expression::field_ref() const {
100 if (auto parameter = this->parameter()) {

Callers 7

field_refMethod · 0.95
typeMethod · 0.95
ToProtoFunction · 0.45
BindImplFunction · 0.45
ExecuteScalarExpressionFunction · 0.45
RemoveNamedRefsFunction · 0.45

Calls 1

getMethod · 0.45

Tested by

no test coverage detected