| 39 | }; |
| 40 | |
| 41 | inline const Expression::Call* CallNotNull(const Expression& expr) { |
| 42 | auto call = expr.call(); |
| 43 | ARROW_DCHECK_NE(call, nullptr); |
| 44 | return call; |
| 45 | } |
| 46 | |
| 47 | inline std::vector<TypeHolder> GetTypes(const std::vector<Expression>& exprs) { |
| 48 | std::vector<TypeHolder> types(exprs.size()); |