std::chrono::weekday_indexed

From cppreference.com
< cpp‎ | chrono
 
 
 
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)
weekday_indexed
(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
 
 
Defined in header <chrono>
class weekday_indexed;
(since C++20)

The class weekday_indexed combines a weekday, representing a day of the week in the Gregorian calendar, with a small index n in the range [1, 5]. It represents the first, second, third, fourth, or fifth weekday of some month.

weekday_indexed is a TriviallyCopyable StandardLayoutType.

Member functions

constructs a weekday_indexed
(public member function)
access the stored weekday
(public member function)
access the stored index
(public member function)
checks if the weekday and index are both valid
(public member function)

Nonmember functions

compares two weekday_indexed objects
(function)
outputs a weekday_indexed into a stream
(function template)