std::chrono::operator<<(std::chrono::file_time)
< cpp | chrono | file clock
template <class CharT, class Traits, class Duration> std::basic_ostream<CharT, Traits>& |
(C++20 起) | |
输出 tp
到流 os
中,如同用 os << std::format(STATICALLY_WIDEN<CharT>("{:%F %T}"), tp) ,其中 STATICALLY_WIDEN<CharT>("{:%F %T}") 若 CharT
为 char
则为 "{:%F %T}" ,而若 CharT
为 wchar_t
则为 L"{:%F %T}" 。
返回值
os
。
参阅
std::formatter 的特化,按照提供的格式格式化 file_time (类模板特化) | |
(C++20) |
在新 string 中存储参数的格式化表示 (函数模板) |