std::chrono::year::min
Min standard notice:
Returns the smallest possible year, that is, std::chrono::year(-32767).
# Declarations
static constexpr std::chrono::year min() noexcept;
(since C++20)
# Return value
std::chrono::year(-32767)
# Example
#include <chrono>
#include <iostream>
int main()
{
std::cout << "The minimum year is: " << (int)std::chrono::year::min() << '\n';
}