std::chrono::operator<< (std::chrono::year)

From cppreference.com
< cpp‎ | chrono‎ | year
 
 
 
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& y);
(since C++20)

Forms a std::basic_string<CharT> s consisting of the year value stored in y formatted as a decimal number, left-padded with 0 to four digits if the result would otherwise be less than four digits. Inserts that string into os. Then, if !y.ok(), inserts the string " is not a valid year" into os.

Return value

os.

Notes

This operator<< is primarily intended for debugging use. For control over formatting, use std::chrono::format.

See also

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