Unix VPS A - Starter B - Basic C - Preferred D - Commercial MPS - Dedicated Previous VPSs * Sign Up! *
Support Contact Us Online Help Handbooks Domain Status Man Pages
FAQ Virtual Servers Pricing Billing Technical
Network Facilities Connectivity Topology Map
Miscellaneous Server Agreement Year 2038 Credits
std::chrono::year::max - std::chrono::year::max
static constexpr year max() noexcept; (since C++20)
Returns the largest possible year, that is, std::chrono::year(32767).
std::chrono::year(32767)
// Run this code
#include <iostream> #include <chrono>
int main() { std::cout << "The maximum year is: " << (int)std::chrono::year::max() << '\n'; }
The maximum year is: 32767
Visit the GSP FreeBSD Man Page Interface.Output converted with ManDoc.