std::chrono::weekday_last::weekday_last

From cppreference.com
< cpp‎ | chrono‎ | weekday last
Date and time library
Time point
(C++11)
(C++20)
Duration
(C++11)
Clocks
(C++11)
(C++11)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time of day
(C++20)(C++20)
(C++20)(C++20)
(C++20)

Calendar
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)
Time zone
(C++20)
(C++20)
(C++20) (C++20) (C++20) (C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
chrono I/O
(C++20)
C-style date and time
constexpr explicit weekday_last( const std::chrono::weekday & wd ) noexcept ;
(since C++20)

Constructs a weekday_last object storing the weekday wd.

Notes

A more convenient way to construct a weekday_last is with weekday's operator[], i.e., wd[ std::chrono::last ]

Example

#include <chrono>
#include <iostream>
using namespace std::chrono;
 
int main()
{
    const year_month_day ymd{floor<days>(system_clock::now())};
    const weekday_last wdl{Sunday[last]}; // A last Sunday of a month
    const year_month_day last_sun{ymd.year() / ymd.month() / wdl};
 
    std::cout << "The last Sunday of current month falls on "
              << (int)last_sun.year() << '/'
              << (unsigned)last_sun.month() << '/'
              << (unsigned)last_sun.day() << '\n';
}

Possible output:

The last Sunday of current month falls on 2021/9/26