constexpr operator std::chrono::sys_days() const noexcept; | (1) | (since C++20) |
explicit constexpr operator std::chrono::local_days() const noexcept; | (2) | (since C++20) |
Converts *this to a std::chrono::time_point representing the same date as this year_month_day_last. This is equivalent to composing a year_month_day from year(), month() and day() and converting that year_month_day to the destination type.
std::chrono::sys_days(year()/month()/day())
std::chrono::local_days(year()/month()/day())
converts to a std::chrono::time_point (public member function of std::chrono::year_month_day) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/chrono/year_month_day_last/operator_days