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