Lines Matching refs:month

369 // 25.8.4, class month    // C++20
370 class month;
371 constexpr bool operator==(const month& x, const month& y) noexcept;
372 constexpr strong_ordering operator<=>(const month& x, const month& y) noexcept;
374 constexpr month operator+(const month& x, const months& y) noexcept;
375 constexpr month operator+(const months& x, const month& y) noexcept;
376 constexpr month operator-(const month& x, const months& y) noexcept;
377 constexpr months operator-(const month& x, const month& y) noexcept;
380 operator<<(basic_ostream<charT, traits>& os, const month& m);
569 operator/(const year& y, const month& m) noexcept;
573 operator/(const month& m, const day& d) noexcept;
575 operator/(const month& m, int d) noexcept;
579 operator/(const day& d, const month& m) noexcept;
583 operator/(const month& m, last_spec) noexcept;
587 operator/(last_spec, const month& m) noexcept;
591 operator/(const month& m, const weekday_indexed& wdi) noexcept;
595 operator/(const weekday_indexed& wdi, const month& m) noexcept;
599 operator/(const month& m, const weekday_last& wdl) noexcept;
603 operator/(const weekday_last& wdl, const month& m) noexcept;
871 template<class charT> struct formatter<chrono::month, charT>; // C++20
904 inline constexpr chrono::month January{1}; // C++20
905 inline constexpr chrono::month February{2}; // C++20
906 inline constexpr chrono::month March{3}; // C++20
907 inline constexpr chrono::month April{4}; // C++20
908 inline constexpr chrono::month May{5}; // C++20
909 inline constexpr chrono::month June{6}; // C++20
910 inline constexpr chrono::month July{7}; // C++20
911 inline constexpr chrono::month August{8}; // C++20
912 inline constexpr chrono::month September{9}; // C++20
913 inline constexpr chrono::month October{10}; // C++20
914 inline constexpr chrono::month November{11}; // C++20
915 inline constexpr chrono::month December{12}; // C++20
958 # include <__chrono/month.h>