constexpr chrono::weekday weekday() const noexcept; // (1) C++20
概要
曜日要素を取得する。
戻り値
以下と等価:
return weekday_indexed().weekday();
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
using namespace std::chrono_literals;
int main()
{
chrono::year_month_weekday date = 2020y/3/chrono::Sunday[2];
chrono::weekday wd = date.weekday();
assert(wd == chrono::Sunday);
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌