| 26 | // Helpers to print individual values |
| 27 | template <class T> |
| 28 | void print_each(std::ostream& out, const T& v) { out << v; } |
| 29 | void print_each(std::ostream& out, std::uint8_t v) { out << static_cast<unsigned>(v); } |
| 30 | void print_each(std::ostream& out, std::int8_t v) { out << static_cast<int>(v); } |
| 31 |