| 98 | } |
| 99 | |
| 100 | inline bool FormatTransformation::check_all_format_value( |
| 101 | const Span<ValueRef>& inputs) const { |
| 102 | for (size_t i = 0; i < inputs.size(); ++i) { |
| 103 | if (!inputs[i].as_ref(m_value_type)) { |
| 104 | return false; |
| 105 | } |
| 106 | } |
| 107 | return true; |
| 108 | } |
| 109 | |
| 110 | namespace { |
| 111 |