I knew that they introduced a formatting library in C++20, which first and foremost has a "format" function that does away with the old iomanip stuff and the << operator all over the place, but I hadn't really looked into it until recently.
And I'm in love. I use format all the time now. Why did I not look into this sooner?
I don't think I really realized how much of a hassle it was to use the old << way of writing to output streams. There are still times when that is useful, but for detailed formatting of text, it really REALLY sucked!
