| 164 | template <typename Options, typename = typename std::enable_if< |
| 165 | std::is_base_of<FunctionOptions, Options>::value>::type> |
| 166 | Expression call(std::string function, std::vector<Expression> arguments, |
| 167 | Options options) { |
| 168 | return call(std::move(function), std::move(arguments), |
| 169 | std::make_shared<Options>(std::move(options))); |
| 170 | } |
| 171 | |
| 172 | /// Assemble a list of all fields referenced by an Expression at any depth. |
| 173 | ARROW_EXPORT |
no outgoing calls