I have a program with many formatted write statements that I'm using the fmt library for. Some of them have many fields, say 100 for example purposes, something
I want to print the time center aligned. But I do not know how to mix arguments with fmt. std::cout << fmt::format("|{0: ^80}|\n", ""); std::cout <<
I want to create a nice table in stdout. The table has a lot of headers that are mainly compiletime strings. For example: std::cout << fmt::format("|{0:-^
I am attempting to write a custom formatter for a Vector<VType> vector. Depending on build settings, this could be a std::vector, or a __gnu_debug::vecto