Skip to content

Latest commit

 

History

History
74 lines (57 loc) · 2.12 KB

op_ostream.md

File metadata and controls

74 lines (57 loc) · 2.12 KB

operator<<

  • chrono[meta header]
  • std::chrono[meta namespace]
  • function[meta id-type]
  • cpp20[meta cpp]
namespace std::chrono {
  template <class charT, class traits>
  std::basic_ostream<charT, traits>&
    operator<<(std::basic_ostream<charT, traits>& os,
               const year_month_weekday_last& ymwdl); // (1) C++20
}

概要

year_month_weekday_lastオブジェクトを出力ストリームに出力する。

戻り値

便宜上のリテラルキャストSTATICALLY-WIDENを導入する。STATICALLY-WIDEN<charT>("...")は、charTcharである場合は"..."charTwchar_tである場合はL"..."を意味する。

  • (1) : 以下と等価:
    return os << format(os.getloc(), STATICALLY-WIDEN<charT>("{:L}/{:L}/{:L}"),
                        ymwdl.year(), ymwdl.month(), ymwdl.weekday_last());
    • format[link /reference/format/format.md]
    • os.getloc()[link /reference/ios/ios_base/getloc.md]
    • ymwdl.year()[link year.md]
    • ymwdl.month()[link month.md]
    • ymwdl.weekday_last()[link weekday_last.md]

#include <iostream>
#include <chrono>

namespace chrono = std::chrono;
using namespace std::chrono_literals;

int main()
{
  std::cout << 2020y/3/chrono::Sunday[chrono::last] << std::endl;
}
  • 2020y[link /reference/chrono/year/op_y.md]
  • chrono::Sunday[link /reference/chrono/weekday_constants.md]
  • chrono::last[link /reference/chrono/last_spec.md]

出力

2020/Mar/Sun[last]

バージョン

言語

  • C++20

処理系

関連項目

参照