Namespaces
Variants
Views
Actions

std::chrono::time_point::min

From cppreference.com
< cpp‎ | chrono‎ | time point
 
 
 
Date and time utilities
(C++11)
(C++11)
Clocks
(C++20)
                                                  
(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()).

[edit] Parameters

(none)

[edit] Return value

the smallest possible time_point

[edit] Example