month_day() = default; | (1) | (since C++20) |
constexpr month_day(const std::chrono::month& m, const std::chrono::day& d) noexcept; | (2) | (since C++20) |
Constructs a month_day
.
month_day
that stores the month m
and the day d
.A more convenient way to construct a month_day
is with operator/
, e.g., std::chrono::April/1
.
(C++20) | conventional syntax for Gregorian calendar date creation (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/chrono/month_day/month_day