public static member function

std::chrono::time_point::min

<chrono>
static constexpr time_point min();
Minimum value of tme_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(); }


Parameters

none.

Return value

A time_point object with the earliest possible value the type can take.

See also