Namespaces
Variants
Views
Actions

std::chrono::weekday

From cppreference.com
< cpp‎ | chrono
 
 
Utilities library
Language support
Type support (basic types, RTTI)
Library feature-test macros (C++20)
Dynamic memory management
Program utilities
Coroutine support (C++20)
Variadic functions
Debugging support
(C++26)
Three-way comparison
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)

 
 
 
Defined in header <chrono>
class weekday;
(since C++20)
inline constexpr std::chrono::weekday Sunday{0};
(since C++20)
inline constexpr std::chrono::weekday Monday{1};
(since C++20)
inline constexpr std::chrono::weekday Tuesday{2};
(since C++20)
inline constexpr std::chrono::weekday Wednesday{3};
(since C++20)
inline constexpr std::chrono::weekday Thursday{4};
(since C++20)
inline constexpr std::chrono::weekday Friday{5};
(since C++20)
inline constexpr std::chrono::weekday Saturday{6};
(since C++20)

The class weekday represent a day of the week in the proleptic Gregorian calendar. Its normal range is [06], for Sunday through Saturday, but it can hold any value in the range [0255]. Seven named constants are predefined in the std::chrono namespace for the seven days of the week.

weekday is a TriviallyCopyable StandardLayoutType.

Contents

[edit] Member functions

constructs a weekday
(public member function) [edit]
increments or decrements the weekday
(public member function) [edit]
adds or subtracts a number of days
(public member function) [edit]
retrieves the stored weekday value
retrieves ISO 8601 weekday value
(public member function) [edit]
checks if the stored weekday value is valid
(public member function) [edit]
convenience syntax for constructing a weekday_indexed or weekday_last from this weekday
(public member function) [edit]

[edit] Nonmember functions

compares two weekday values
(function) [edit]
performs arithmetic on weekdays
(function) [edit]
outputs a weekday into a stream
(function template) [edit]
parses a weekday from a stream according to the provided format
(function template) [edit]

[edit] Helper classes

formatting support for weekday
(class template specialization) [edit]
hash support for std::chrono::weekday
(class template specialization)

[edit] Example

#include <chrono>
#include <iostream>
 
int main()
{
    std::chrono::weekday x{42 / 13};
    std::cout << x++ << '\n';
    std::cout << x << '\n';
    std::cout << ++x << '\n';
}

Output:

Wed
Thu
Fri

[edit] See also

represents the nth weekday of a month
(class) [edit]