std::chrono::operator<<(std::chrono::year_month)
Min standard notice:
Header: <chrono>
Outputs a textual representation of ym into the stream os, as if by
# Declarations
template< class CharT, class Traits >
std::basic_ostream<CharT, Traits>&
operator<<( std::basic_ostream<CharT, Traits>& os, const std::chrono::year_month& ym );
(since C++20)
# Return value
os
# Example
This section is incompleteReason: no example
# Defect reports
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| P2372R3 | C++20 | the given locale was used by default | L is needed to use the given locale |