• Home
  • Raw
  • Download

Lines Matching refs:month_weekday

414 // 25.8.11, class month_weekday    // C++20
415 class month_weekday;
417 constexpr bool operator==(const month_weekday& x, const month_weekday& y) noexcept;
418 constexpr bool operator!=(const month_weekday& x, const month_weekday& y) noexcept;
556 constexpr month_weekday
558 constexpr month_weekday
560 constexpr month_weekday
562 constexpr month_weekday
597 operator/(const year& y, const month_weekday& mwd) noexcept;
599 operator/(int y, const month_weekday& mwd) noexcept;
601 operator/(const month_weekday& mwd, const year& y) noexcept;
603 operator/(const month_weekday& mwd, int y) noexcept;
2123 class month_weekday {
2128 month_weekday() = default;
2129 …constexpr month_weekday(const chrono::month& __mval, const chrono::weekday_indexed& __wdival) noex…
2137 bool operator==(const month_weekday& __lhs, const month_weekday& __rhs) noexcept
2141 bool operator!=(const month_weekday& __lhs, const month_weekday& __rhs) noexcept
2145 month_weekday operator/(const month& __lhs, const weekday_indexed& __rhs) noexcept
2146 { return month_weekday{__lhs, __rhs}; }
2149 month_weekday operator/(int __lhs, const weekday_indexed& __rhs) noexcept
2150 { return month_weekday{month(__lhs), __rhs}; }
2153 month_weekday operator/(const weekday_indexed& __lhs, const month& __rhs) noexcept
2154 { return month_weekday{__rhs, __lhs}; }
2157 month_weekday operator/(const weekday_indexed& __lhs, int __rhs) noexcept
2158 { return month_weekday{month(__rhs), __lhs}; }
2617 year_month_weekday operator/(const year& __lhs, const month_weekday& __rhs) noexcept
2621 year_month_weekday operator/(int __lhs, const month_weekday& __rhs) noexcept
2625 year_month_weekday operator/(const month_weekday& __lhs, const year& __rhs) noexcept
2629 year_month_weekday operator/(const month_weekday& __lhs, int __rhs) noexcept