std::chrono::operator<< (std::chrono::year_month)

From cppreference.com
< cpp‎ | chrono‎ | year month
 
 
 
Date and time utilities
(C++11)
(C++11)
Clocks
(C++20)
                                                  
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Calendars
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time zones
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
C-style date and time
 
 
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)

Outputs a textual representation of ym into the stream os, as if by os << ym.year() << '/' << ym.month().

Return value

os.

Notes

This operator<< is primarily intended for debugging use. When used with non-default stream flags, the output may be surprising:

using namespace std::chrono;
auto ym = 2001y/February;
std::cout.width(10);
std::cout.fill('-');
std::cout << std::left << ym; // may output "2001------/Feb"

For control over formatting, use std::chrono::format.

See also

outputs a year_month into a stream according to the provided format
(function template)
(C++20)
formats a streamable chrono object for insertion
(function template)