std::chrono::operator<<(std::chrono::file_time)
Min standard notice:
Header: <chrono>
Outputs tp into the stream os, as if by os « std::format(os.getloc(), STATICALLY-WIDEN("{:L%F %T}"), tp), where STATICALLY_WIDEN
# Declarations
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)
# Return value
os
# 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 |