std::chrono::to_stream(std::chrono::sys_time) (3) Linux Manual Page
std::chrono::to_stream(std::chrono::sys_time) – std::chrono::to_stream(std::chrono::sys_time) Synopsis template <class CharT, class Traits, class Duration> std::basic_ostream<CharT, Traits> &(since C++ 20) to_stream(std::basic_ostream<CharT, Traits> &os, const CharT *fmt, const std::chrono::sys_time<Duration> &tp); Outputs tp to the stream os, formatted according to the null-terminated format string fmt. If %Z is used, it is replaced with "UTC" widened to CharT. If %z or a…
