std::chrono::file_clock:: to_sys, std::chrono::file_clock:: from_sys
|
|
Time point | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Duration | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Clocks | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Time of day | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Calendar | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Time zone | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
chrono
I/O
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(C++20)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
C-style date and time |
Member functions | ||||
|
||||
file_clock::to_sys
file_clock::from_sys
(
optional*
)
|
||||
|
||||
(
optional*
)
|
||||
Time point I/O | ||||
template
<
class
Duration
>
static
std::
chrono
::
sys_time
<
/*see below*/
>
|
(1) |
(since C++20)
( optional* ) |
template
<
class
Duration
>
static
std::
chrono
::
file_time
<
/*see below*/
>
|
(2) |
(since C++20)
( optional* ) |
file_time
t
to a
sys_time
representing the same point in time.
sys_time
t
to a
file_time
representing the same point in time.
The duration of the return type is computed from
Duration
in an unspecified manner.
These function templates are optional: an implementation may choose to instead provide
to_utc()
and
from_utc()
.
Return value
sys_time
representing the same point in time as the argument.
file_time
representing the same point in time as the argument.
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 incomplete
Reason: no example |
See also
[static]
(optional)
|
converts between
file_time
and
utc_time
(public static member function) |
(C++20)
|
convert time points of one clock to another
(function template) |