Tagged Questions
The fastformat tag has no wiki summary.
10
votes
5answers
660 views
Is there a 'catch' with FastFormat?
I just read about the FastFormat C++ i/o formatting library, and it seems too good to be true: Faster even than printf, typesafe, and with what I consider a pleasing interface:
// prints: "This ...
4
votes
1answer
117 views
How can I guarantee type safety in a function that accepts an unlimited amount of arguments?
The FastFormat library works like this:
string example;
fastformat::fmt(example, "I am asking {0} question on {1}", 1, "stackoverflow");
It also claims "100% type-safety". I can understand how ...
2
votes
1answer
520 views
Safe/flexible facade for Windows FormatMessage
I need to use FormatMessage() for a project, but I don't like its scary interface. Does anyone know of a facade that tidies it up while still allowing for the replacement parameters?
I just read the ...
1
vote
1answer
112 views
Do C++ formatting libraries generally fall back to *sprintf for numeric formatting?
I am wondering whether "all" C++ formatting libraries eventually fall back to a *sprintf function to format numbers.
I am asking this because:
Looking at the iostreams library that comes with ...
0
votes
0answers
68 views
How do I format a number with commas using FastFormat?
How do I format a number with commas for thousand separators using FastFormat library?
For example,
7800 -> 7,800
5100100 -> 5,100,100