Ich habe gerade über den FastFormat C++ E/A-Formatierungsbibliothek und es scheint zu schön, um wahr zu sein: Schneller als printf, typsicher und mit einer, wie ich finde, ansprechenden Schnittstelle:
// prints: "This formats the remaining arguments based on their order - in this case we put 1 before zero, followed by 1 again"
fastformat::fmt(std::cout, "This formats the remaining arguments based on their order - in this case we put {1} before {0}, followed by {1} again", "zero", 1);
// prints: "This writes each argument in the order, so first zero followed by 1"
fastformat::write(std::cout, "This writes each argument in the order, so first ", "zero", " followed by ", 1);
Das sieht fast zu schön aus, um wahr zu sein. Gibt es einen Haken? Haben Sie gute, schlechte oder gleichgültige Erfahrungen damit gemacht?