std::chrono::file_clock::to_sys, std::chrono::file_clock::from_sys
Min standard notice:
- Converts the file_time t to a sys_time representing the same point in time.
# Declarations
template< class Duration >
static std::chrono::sys_time</*see below*/>
to_sys( const std::chrono::file_time<Duration>& t );
(since C++20) (optional*)
template< class Duration >
static std::chrono::file_time</*see below*/>
from_sys( const std::chrono::sys_time<Duration>& t );
(since C++20) (optional*)
# Notes
User code should usually use std::chrono::clock_cast, which provides a generic interface to convert time points between clocks, rather than call these functions directly.
# Example
This section is incompleteReason: no example