public static member function
<chrono>
static constexpr time_point min();
Minimum value of time_point
Returns the minimum value of time_point.
The function calls duration::min to construct an object with the minimum value possible for its internal duration object:
|
static constexpr time_point min() { return duration::min(); }
| |
Return value
A time_point object with the earliest possible value the type can take.
See also
- time_point::max
- Maximum value of time_point (public static member function
)
- duration::min
- Duration minimum value (public static member function
)