std::formatter<std::chrono::weekday>
Min standard notice:
Header: <chrono>
Specialization of std::formatter that defines formatting rules for a std::chrono::weekday.
# Declarations
template< class CharT >
struct formatter<std::chrono::weekday, CharT>;
(since C++20)
# Example
This section is incompleteReason: no example
# Defect reports
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| P2372R3 | C++20 | formatter used the global locale or passed locale | default “C” locale is used when L is absent |