constexpr explicit operator local_days() const noexcept; // (1) C++20
概要
year_month_weekday
オブジェクトをローカル時間の日付に、明示的に型変換する。
戻り値
return local_days{sys_days{*this}.time_since_epoch()};
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
using namespace std::chrono_literals;
int main()
{
chrono::local_days date{2020y/3/chrono::Sunday[chrono::last]};
assert(chrono::year_month_day{date} == 2020y/3/29);
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌