| 171 | } |
| 172 | |
| 173 | void SubstraitCall::SetValueArg(int index, compute::Expression value_arg) { |
| 174 | size_ = std::max(size_, index + 1); |
| 175 | value_args_[index] = std::move(value_arg); |
| 176 | } |
| 177 | |
| 178 | std::optional<const std::vector<std::string>*> SubstraitCall::GetOption( |
| 179 | std::string_view option_name) const { |
no outgoing calls