FreeBSD Manual Pages
std::chrono::year::max(3) C++ Standard Libary std::chrono::year::max(3) NAME std::chrono::year::max - std::chrono::year::max Synopsis 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() { std::cout << "The maximum year is: " << (int)std::chrono::year::max() << '\n'; } Output: The maximum year is: 32767 http://cppreference.com 2022.07.31 std::chrono::year::max(3)
NAME | Synopsis | Return value | Example | Output:
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::chrono::year::max&sektion=3&manpath=FreeBSD+Ports+15.0>
