std::chrono::year_month_day_last::operator sys_days, std::chrono::year_month_day_last::operator local_days

From cppreference.com
 
 
 
Date and time utilities
(C++11)
(C++11)
Clocks
(C++20)
                                                  
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Calendars
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time zones
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
C-style date and time
 
 
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.

1) Equivalent to std::chrono::sys_days(year()/month()/day())
2) Equivalent to std::chrono::local_days(year()/month()/day())

Example

See also

converts to a std::chrono::time_point
(public member function of std::chrono::year_month_day)