▲ | secondcoming a day ago | |
Nice. I think most people have tried doing something like this in C++ at some point. One issue that I had is that printing floating-point values really needs the ability for the user to specify the precision and format. It's actually absurd that `std::to_string(double)` does not allow this. Also, I believe `std::to_chars(double)` uses a fast algorithm and allows writing directly into a buffer. |