| 75 | } |
| 76 | |
| 77 | inline ValueRefList FormatTransformation::unwrap_inputs( |
| 78 | const Span<ValueRef>& inputs) const { |
| 79 | ValueRefList unwrapped_inputs(inputs.size()); |
| 80 | for (size_t i = 0; i < inputs.size(); ++i) { |
| 81 | unwrapped_inputs[i] = unwrap_input(inputs[i]); |
| 82 | } |
| 83 | return unwrapped_inputs; |
| 84 | } |
| 85 | |
| 86 | inline ValueRef FormatTransformation::wrap_output( |
| 87 | const ValueRef& output, Format format) const { |
no test coverage detected