Category "fmt"

How to mix formatting in a single call using libfmt

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 <<

Generating compile time functions string for formatting strings with libfmt

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:-^

What is the best way to define the same fmt::formatter for multiple types?

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