static constexpr std::chrono::year min() noexcept; | (since C++20) |
Returns the smallest possible year
, that is, std::chrono::year(-32767)
.
std::chrono::year(-32767)
.
#include <iostream> #include <chrono> int main() { std::cout << "The minimum year is: " << (int)std::chrono::year::min() << '\n'; }
Output:
The minimum year is: -32767
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/chrono/year/min