Namespaces
Variants

std::chrono::year:: year

From cppreference.net
year ( ) = default ;
(1) (desde C++20)
constexpr explicit year ( int y ) noexcept ;
(2) (desde C++20)

Construye un objeto year .

1) El constructor por defecto deja el valor del año sin inicializar.
2) Si y está en el rango [ - 32767 , 32767 ] , construye un objeto year que contiene el valor de año y . De lo contrario, el valor almacenado es no especificado.

Ejemplo

#include <chrono>
#include <iostream>
int main()
{
    using namespace std::chrono;
    constexpr int leap_years = []
    {
        int count{};
        for (int i{year::min()}; i <= int{year::max()}; ++i)
            if (year{i}.is_leap()) // uses constructor (2)
                ++count;
        return count;
    } ();
    static_assert(15891 == leap_years);
    std::cout << "There are " << leap_years << " leap years in the range ["
              << int(year::min()) << ", " << int(year::max()) << "].\n";
}

Salida:

There are 15891 leap years in the range [-32767, 32767].