Format std::time_point in ISO 8601 format with fractional seconds / microseconds in C++
A C++ function to format an std::time_point as an ISO 8601 string. The C++ std chrono stuff is very useful but a bit of a head-wreck! One of the things I had problems with was how to take an std::time_point value and format it as a string with the fractional seconds / microseconds included. This […]
