std::formatter<std::chrono::weekday>

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

DRApplied toBehavior as publishedCorrect behavior
P2372R3C++20formatter used the global locale or passed localedefault “C” locale is used when L is absent

# See also