std::formatter<std::chrono::zoned_time>
Min standard notice:
Header: <chrono>
Specialization of std::formatter that defines formatting rules for a std::chrono::zoned_time.
# Declarations
template< class Duration, class TimeZonePtr, class CharT >
struct formatter<std::chrono::zoned_time<Duration, TimeZonePtr>, CharT>
: std::formatter</*local-time-format-t*/<Duration>, 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 |