formatxx
formatxx copied to clipboard
How to apply formatting arguments from a vector?
Say you have a template "Hello {0} test {1}
And a vector std::vector<std::string>{"Bill", "Bob"}
How do you apply the vector to the format string?
I attempted just passing a vector to format_as which compiled, but did not actually format.