• Home
  • Raw
  • Download

Lines Matching refs:month_weekday

415 // 25.8.11, class month_weekday    // C++20
416 class month_weekday;
418 constexpr bool operator==(const month_weekday& x, const month_weekday& y) noexcept;
419 constexpr bool operator!=(const month_weekday& x, const month_weekday& y) noexcept;
557 constexpr month_weekday
559 constexpr month_weekday
561 constexpr month_weekday
563 constexpr month_weekday
598 operator/(const year& y, const month_weekday& mwd) noexcept;
600 operator/(int y, const month_weekday& mwd) noexcept;
602 operator/(const month_weekday& mwd, const year& y) noexcept;
604 operator/(const month_weekday& mwd, int y) noexcept;
2105 class _LIBCPP_TYPE_VIS month_weekday {
2110 month_weekday() = default;
2111 …constexpr month_weekday(const chrono::month& __mval, const chrono::weekday_indexed& __wdival) noex…
2119 bool operator==(const month_weekday& __lhs, const month_weekday& __rhs) noexcept
2123 bool operator!=(const month_weekday& __lhs, const month_weekday& __rhs) noexcept
2127 month_weekday operator/(const month& __lhs, const weekday_indexed& __rhs) noexcept
2128 { return month_weekday{__lhs, __rhs}; }
2131 month_weekday operator/(int __lhs, const weekday_indexed& __rhs) noexcept
2132 { return month_weekday{month(__lhs), __rhs}; }
2135 month_weekday operator/(const weekday_indexed& __lhs, const month& __rhs) noexcept
2136 { return month_weekday{__rhs, __lhs}; }
2139 month_weekday operator/(const weekday_indexed& __lhs, int __rhs) noexcept
2140 { return month_weekday{month(__rhs), __lhs}; }
2594 year_month_weekday operator/(const year& __lhs, const month_weekday& __rhs) noexcept
2598 year_month_weekday operator/(int __lhs, const month_weekday& __rhs) noexcept
2602 year_month_weekday operator/(const month_weekday& __lhs, const year& __rhs) noexcept
2606 year_month_weekday operator/(const month_weekday& __lhs, int __rhs) noexcept