public static member function
<chrono>

std::chrono::time_point::min

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:
1
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