Lines Matching refs:year_month_weekday_last
514 // 25.8.17, class year_month_weekday_last // C++20
515 class year_month_weekday_last;
517 constexpr bool operator==(const year_month_weekday_last& x,
518 const year_month_weekday_last& y) noexcept;
519 constexpr bool operator!=(const year_month_weekday_last& x,
520 const year_month_weekday_last& y) noexcept;
521 constexpr year_month_weekday_last
522 operator+(const year_month_weekday_last& ymwdl, const months& dm) noexcept;
523 constexpr year_month_weekday_last
524 operator+(const months& dm, const year_month_weekday_last& ymwdl) noexcept;
525 constexpr year_month_weekday_last
526 operator+(const year_month_weekday_last& ymwdl, const years& dy) noexcept;
527 constexpr year_month_weekday_last
528 operator+(const years& dy, const year_month_weekday_last& ymwdl) noexcept;
529 constexpr year_month_weekday_last
530 operator-(const year_month_weekday_last& ymwdl, const months& dm) noexcept;
531 constexpr year_month_weekday_last
532 operator-(const year_month_weekday_last& ymwdl, const years& dy) noexcept;
605 constexpr year_month_weekday_last
607 constexpr year_month_weekday_last
609 constexpr year_month_weekday_last
611 constexpr year_month_weekday_last
613 constexpr year_month_weekday_last
2640 class _LIBCPP_TYPE_VIS year_month_weekday_last {
2646 constexpr year_month_weekday_last(const chrono::year& __yval, const chrono::month& __mval,
2649 constexpr year_month_weekday_last& operator+=(const months& __dm) noexcept;
2650 constexpr year_month_weekday_last& operator-=(const months& __dm) noexcept;
2651 constexpr year_month_weekday_last& operator+=(const years& __dy) noexcept;
2652 constexpr year_month_weekday_last& operator-=(const years& __dy) noexcept;
2667 days year_month_weekday_last::__to_days() const noexcept
2675 bool operator==(const year_month_weekday_last& __lhs, const year_month_weekday_last& __rhs) noexcept
2679 bool operator!=(const year_month_weekday_last& __lhs, const year_month_weekday_last& __rhs) noexcept
2684 year_month_weekday_last operator/(const year_month& __lhs, const weekday_last& __rhs) noexcept
2685 { return year_month_weekday_last{__lhs.year(), __lhs.month(), __rhs}; }
2688 year_month_weekday_last operator/(const year& __lhs, const month_weekday_last& __rhs) noexcept
2689 { return year_month_weekday_last{__lhs, __rhs.month(), __rhs.weekday_last()}; }
2692 year_month_weekday_last operator/(int __lhs, const month_weekday_last& __rhs) noexcept
2696 year_month_weekday_last operator/(const month_weekday_last& __lhs, const year& __rhs) noexcept
2700 year_month_weekday_last operator/(const month_weekday_last& __lhs, int __rhs) noexcept
2705 year_month_weekday_last operator+(const year_month_weekday_last& __lhs, const months& __rhs) noexce…
2709 year_month_weekday_last operator+(const months& __lhs, const year_month_weekday_last& __rhs) noexce…
2713 year_month_weekday_last operator-(const year_month_weekday_last& __lhs, const months& __rhs) noexce…
2717 year_month_weekday_last operator+(const year_month_weekday_last& __lhs, const years& __rhs) noexcept
2718 { return year_month_weekday_last{__lhs.year() + __rhs, __lhs.month(), __lhs.weekday_last()}; }
2721 year_month_weekday_last operator+(const years& __lhs, const year_month_weekday_last& __rhs) noexcept
2725 year_month_weekday_last operator-(const year_month_weekday_last& __lhs, const years& __rhs) noexcept
2728 inline constexpr year_month_weekday_last& year_month_weekday_last::operator+=(const months& __dm) n…
2729 inline constexpr year_month_weekday_last& year_month_weekday_last::operator-=(const months& __dm) n…
2730 inline constexpr year_month_weekday_last& year_month_weekday_last::operator+=(const years& __dy) n…
2731 inline constexpr year_month_weekday_last& year_month_weekday_last::operator-=(const years& __dy) n…