public static member function
<chrono>

std::chrono::duration_values::min

static constexpr Rep min();
Minimum value
Returns the minimum tick count value.

duration_values is a traits class. By default, this static member function returns numeric_limits<Rep>::lowest(), where Rep is the first template parameter (the type used by a duration for its internal tick count).

This function is called by duration::min to create a duration value.

A specific type of tick count can specialize this template to provide a different value.

Parameters

none.

Return value

The value of the minimum tick count.
Rep is the first class template parameter, which is an arithmetic type (or a class emulating an arithmetic type).

See also