std::chrono::operator<< (std::chrono::file_time)

From cppreference.com
< cpp‎ | chrono‎ | file clock

 
 
 
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
 
std::chrono::file_clock
Member functions

(provided only if to_utc and from_utc are not provided)

(provided only if to_sys and from_sys are not provided)
Time point I/O
operator<<
 
template <class CharT, class Traits, class Duration>

std::basic_ostream<CharT, Traits>&
operator<<(std::basic_ostream<CharT, Traits>& os,

           const std::chrono::file_time<Duration>& tp);
(since C++20)

Outputs tp into the stream os, as if by std::chrono::to_stream(os, fmt, tp), where fmt is a string containing "%F %T" widened to CharT.

Return value

os.

See also

outputs a file_time into a stream according to the provided format
(function template)