std::chrono::year::min - cppreference.com (original) (raw)
Returns the smallest possible year, that is, std::chrono::year(-32767).
[edit] Return value
std::chrono::year(-32767)
[edit] Example
#include #include int main() { std::cout << "The minimum year is: " << (int)std::chrono::year::min() << '\n'; }
Output:
The minimum year is: -32767