std::chrono::year::max
From cppreference.com
static constexpr year max() noexcept; |
(since C++20) | |
Returns the largest possible year
, that is, std::chrono::year(32767).
Return value
std::chrono::year(32767)
Example
Run this code
#include <iostream> #include <chrono> int main() { auto y {std::chrono::year::max()}; std::cout << "The maximum year is: " << (int)y << "\n"; }
Output:
The maximum year is: 32767