std::chrono::time_point::min

From cppreference.com
< cpplrm; | chronolrm; | time point
Date and time utilities
(C++11)
(C++11)
Clocks
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Calendars
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time zones
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
C-style date and time
static constexpr time_point min();

Returns a time_point with the smallest possible duration, i.e. std::chrono::time_point(std::chrono::duration::min()).

Parameters

(none)

Return value

the smallest possible time_point

Example