Lines Matching refs:weekday_indexed

231 class weekday_indexed;  variable
262 CONSTCD11 month_weekday operator/(const month& m, const weekday_indexed& wdi) NOEXCEPT;
263 CONSTCD11 month_weekday operator/(int m, const weekday_indexed& wdi) NOEXCEPT;
264 CONSTCD11 month_weekday operator/(const weekday_indexed& wdi, const month& m) NOEXCEPT;
265 CONSTCD11 month_weekday operator/(const weekday_indexed& wdi, int m) NOEXCEPT;
292 operator/(const year_month& ym, const weekday_indexed& wdi) NOEXCEPT;
478 CONSTCD11 weekday_indexed operator[](unsigned index) const NOEXCEPT;
490 friend class weekday_indexed; variable
507 class weekday_indexed
513 weekday_indexed() = default;
514 CONSTCD11 weekday_indexed(const date::weekday& wd, unsigned index) NOEXCEPT;
521 CONSTCD11 bool operator==(const weekday_indexed& x, const weekday_indexed& y) NOEXCEPT;
522 CONSTCD11 bool operator!=(const weekday_indexed& x, const weekday_indexed& y) NOEXCEPT;
526 operator<<(std::basic_ostream<CharT, Traits>& os, const weekday_indexed& wdi);
659 date::weekday_indexed wdi_;
662 const date::weekday_indexed& wdi) NOEXCEPT;
665 CONSTCD11 date::weekday_indexed weekday_indexed() const NOEXCEPT;
839 date::weekday_indexed wdi_;
844 const date::weekday_indexed& wdi) NOEXCEPT;
859 CONSTCD11 date::weekday_indexed weekday_indexed() const NOEXCEPT;
2057 weekday_indexed::weekday() const NOEXCEPT
2062 CONSTCD11 inline unsigned weekday_indexed::index() const NOEXCEPT {return index_;}
2067 weekday_indexed::ok() const NOEXCEPT
2079 weekday_indexed::weekday_indexed(const date::weekday& wd, unsigned index) NOEXCEPT
2093 low_level_fmt(std::basic_ostream<CharT, Traits>& os, const weekday_indexed& wdi)
2103 operator<<(std::basic_ostream<CharT, Traits>& os, const weekday_indexed& wdi)
2113 weekday_indexed
2122 operator==(const weekday_indexed& x, const weekday_indexed& y) NOEXCEPT
2130 operator!=(const weekday_indexed& x, const weekday_indexed& y) NOEXCEPT
2559 const date::weekday_indexed& wdi) NOEXCEPT
2568 weekday_indexed
2569 month_weekday::weekday_indexed() const NOEXCEPT
2587 return x.month() == y.month() && x.weekday_indexed() == y.weekday_indexed();
2606 return low_level_fmt(os, mwd.weekday_indexed());
3176 const date::weekday_indexed& wdi)
3254 weekday_indexed
3255 year_month_weekday::weekday_indexed() const NOEXCEPT
3315 x.weekday_indexed() == y.weekday_indexed();
3333 detail::low_level_fmt(os, ymwdi.weekday_indexed());
3345 return (ymwd.year() / ymwd.month() + dm) / ymwd.weekday_indexed();
3371 return {ymwd.year()+dy, ymwd.month(), ymwd.weekday_indexed()};
3664 operator/(const month& m, const weekday_indexed& wdi) NOEXCEPT
3672 operator/(const weekday_indexed& wdi, const month& m) NOEXCEPT
3680 operator/(int m, const weekday_indexed& wdi) NOEXCEPT
3688 operator/(const weekday_indexed& wdi, int m) NOEXCEPT
3824 operator/(const year_month& ym, const weekday_indexed& wdi) NOEXCEPT
3834 return {y, mwd.month(), mwd.weekday_indexed()};