| 89 | } |
| 90 | |
| 91 | inline ValueRefList FormatTransformation::wrap_outputs( |
| 92 | const ValueRefList& outputs, Format format) const { |
| 93 | ValueRefList wrapped_outputs(outputs.size()); |
| 94 | for (size_t i = 0; i < outputs.size(); ++i) { |
| 95 | wrapped_outputs[i] = wrap_output(outputs[i], format); |
| 96 | } |
| 97 | return wrapped_outputs; |
| 98 | } |
| 99 | |
| 100 | inline bool FormatTransformation::check_all_format_value( |
| 101 | const Span<ValueRef>& inputs) const { |
no test coverage detected