| 8 | #include <vector> |
| 9 | |
| 10 | int main() |
| 11 | { |
| 12 | std::vector<char> buffer{'H', 'e', 'l', 'l', 'o', ','}; |
| 13 | std::format_to(std::back_inserter(buffer), " {}", "World"); |
| 14 | |
| 15 | for(const auto& c : buffer) { std::cout << c; } |
| 16 | |
| 17 | std::cout << '\n'; |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected