| 167 | } |
| 168 | |
| 169 | bool SubstraitCall::HasValueArg(int index) const { |
| 170 | return value_args_.find(index) != value_args_.end(); |
| 171 | } |
| 172 | |
| 173 | void SubstraitCall::SetValueArg(int index, compute::Expression value_arg) { |
| 174 | size_ = std::max(size_, index + 1); |
no test coverage detected