namespace std::chrono {
template <class charT, class traits>
std::basic_ostream<charT, traits>&
operator<<(std::basic_ostream<charT, traits>& os, const year_month_day_last& ymdl); // (1) C++20
}
概要
year_month_day_last
オブジェクトを出力ストリームに出力する。
戻り値
便宜上のリテラルキャストSTATICALLY-WIDEN
を導入する。STATICALLY-WIDEN<charT>("...")
は、charT
がchar
である場合は"..."
、charT
がwchar_t
である場合はL"..."
を意味する。
- (1) : 以下と等価:
return os << format(os.getloc(), STATICALLY-WIDEN<charT>("{:L}/{:L}"), ymdl.year(), ymdl.month_day_last());
例
出力
2020/Feb/last
バージョン
言語
- C++20
処理系
- Clang: 9.0 ❌
- GCC: 9.2 ❌
- Visual C++: 2019 Update 3 ❌
関連項目
- chronoの
std::format()
(フォーマットの詳細)
参照
- P2372R1 Fixing locale handling in chrono formatters
- この提案文書はC++20の策定後に採択されたが、実装が追いついていない時期の採択だったために、C++20の仕様として扱われる