| 5 | #include <print> |
| 6 | |
| 7 | auto FormatLine(auto&& view) |
| 8 | { |
| 9 | return view | std::views::transform([](auto num) { |
| 10 | return std::format("{}", num); |
| 11 | }) | std::views::join_with('\t') |
| 12 | | std::ranges::to<std::string>(); |
| 13 | } |
| 14 | |
| 15 | std::vector<int> results(9); |
| 16 | std::barrier barrier{ 9, []() noexcept { |
no outgoing calls
no test coverage detected