std::chrono::duration_values

From cppreference.com
< cpp‎ | chrono
Utilities library
General utilities
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)
(C++20)
Swap and type operations
(C++20)
(C++14)
(C++11)
(C++23)
(C++11)
(C++23)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++11)
(C++17)
(C++17)
(C++23)



Date and time library
Time point
(C++11)
(C++20)
Duration
(C++11)
Clocks
(C++11)
(C++11)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time of day
(C++20)(C++20)
(C++20)(C++20)
(C++20)

Calendar
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)
Time zone
(C++20)
(C++20)
(C++20) (C++20) (C++20) (C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
chrono I/O
(C++20)
C-style date and time
std::chrono::duration_values
Defined in header <chrono>
template < class Rep >
struct duration_values;
(since C++11)

The std::chrono::duration_values type defines three common durations:

  • std::chrono::duration_values::zero
  • std::chrono::duration_values::min
  • std::chrono::duration_values::max

The zero, min, and max static member functions in std::chrono::duration

This type can be specialized if the representation Rep requires a specific implementation to return these duration objects.

Member functions

[static]
returns a zero-length representation
(public static member function)
[static]
returns the smallest possible representation
(public static member function)
[static]
returns the largest possible representation
(public static member function)