...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
constexpr
date() noexcept;
» more...
Constructs a date from its year, month and date components.
constexpr
date(
std::uint16_t year,
std::uint8_t month,
std::uint8_t day) noexcept;
» more...
Constructs a date from a time_point
.
explicit constexpr date(date::time_point
tp); »more...
Constructs a date from a local time point.
explicit constexpr
date(
std::chrono::local_days tp);
» more...