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::min - std::chrono::year::min
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)
// Run this code
#include <iostream> #include <chrono>
int main() { std::cout << "The minimum year is: " << (int)std::chrono::year::min() << '\n'; }
The minimum year is: -32767
Visit the GSP FreeBSD Man Page Interface.Output converted with ManDoc.