std::chrono::year_month_day (3) - Linux Manuals

std::chrono::year_month_day: std::chrono::year_month_day

NAME

std::chrono::year_month_day - std::chrono::year_month_day

Synopsis


Defined in header <chrono>
class year_month_day; (since C++20)


The class year_month_day represents a specific year, month, and day. It is a field-based time point, with a resolution of std::chrono::days. std::chrono::years- and std::chrono::months-oriented arithmetic are supported directly. An implicit conversion to and from std::chrono::sys_days allows std::chrono::days-oriented arithmetic to be performed efficiently.
year_month_day is a TriviallyCopyable StandardLayoutType.

Member functions


                    constructs a year_month_day
constructor (public member function)
                    modifies the time point by some number of months or years
operator+= (public member function)
operator-=


year accesses the year, month, and day stored in this object
month (public member function)
day
                    converts to a std::chrono::time_point
operator_sys_days (public member function)
operator_local_days
                    checks if the year_month_day represents a valid date
ok (public member function)


Nonmember functions


operator==
operator!= compares two year_month_day objects
operator< (function)
operator<=
operator>
operator>=
            adds or subtracts a year_month_day and some number of years or months
operator+ (public member function)
operator-
            outputs a year_month_day into a stream
operator<< (function template)
            outputs a year_month_day into a stream according to the provided format
to_stream (function template)
            parses a year_month_day from a stream according to the provided format
from_stream (function template)