Lines Matching refs:year_month

239 class year_month;  variable
248 CONSTCD11 year_month operator/(const year& y, const month& m) NOEXCEPT;
249 CONSTCD11 year_month operator/(const year& y, int m) NOEXCEPT;
272 CONSTCD11 year_month_day operator/(const year_month& ym, const day& d) NOEXCEPT;
273 CONSTCD11 year_month_day operator/(const year_month& ym, int d) NOEXCEPT;
280 year_month_day_last operator/(const year_month& ym, last_spec) NOEXCEPT;
292 operator/(const year_month& ym, const weekday_indexed& wdi) NOEXCEPT;
312 operator/(const year_month& ym, const weekday_last& wdl) NOEXCEPT;
557 class year_month
563 year_month() = default;
564 CONSTCD11 year_month(const date::year& y, const date::month& m) NOEXCEPT;
570 CONSTCD14 year_month& operator+=(const months& dm) NOEXCEPT;
572 CONSTCD14 year_month& operator-=(const months& dm) NOEXCEPT;
573 CONSTCD14 year_month& operator+=(const years& dy) NOEXCEPT;
574 CONSTCD14 year_month& operator-=(const years& dy) NOEXCEPT;
579 CONSTCD11 bool operator==(const year_month& x, const year_month& y) NOEXCEPT;
580 CONSTCD11 bool operator!=(const year_month& x, const year_month& y) NOEXCEPT;
581 CONSTCD11 bool operator< (const year_month& x, const year_month& y) NOEXCEPT;
582 CONSTCD11 bool operator> (const year_month& x, const year_month& y) NOEXCEPT;
583 CONSTCD11 bool operator<=(const year_month& x, const year_month& y) NOEXCEPT;
584 CONSTCD11 bool operator>=(const year_month& x, const year_month& y) NOEXCEPT;
587 CONSTCD14 year_month operator+(const year_month& ym, const months& dm) NOEXCEPT;
589 CONSTCD14 year_month operator+(const months& dm, const year_month& ym) NOEXCEPT;
591 CONSTCD14 year_month operator-(const year_month& ym, const months& dm) NOEXCEPT;
593 CONSTCD11 months operator-(const year_month& x, const year_month& y) NOEXCEPT;
594 CONSTCD11 year_month operator+(const year_month& ym, const years& dy) NOEXCEPT;
595 CONSTCD11 year_month operator+(const years& dy, const year_month& ym) NOEXCEPT;
596 CONSTCD11 year_month operator-(const year_month& ym, const years& dy) NOEXCEPT;
600 operator<<(std::basic_ostream<CharT, Traits>& os, const year_month& ym);
2192 year_month::year_month(const date::year& y, const date::month& m) NOEXCEPT
2197 CONSTCD11 inline year year_month::year() const NOEXCEPT {return y_;}
2198 CONSTCD11 inline month year_month::month() const NOEXCEPT {return m_;}
2199 CONSTCD11 inline bool year_month::ok() const NOEXCEPT {return y_.ok() && m_.ok();}
2204 year_month&
2205 year_month::operator+=(const months& dm) NOEXCEPT
2214 year_month&
2215 year_month::operator-=(const months& dm) NOEXCEPT
2223 year_month&
2224 year_month::operator+=(const years& dy) NOEXCEPT
2232 year_month&
2233 year_month::operator-=(const years& dy) NOEXCEPT
2242 operator==(const year_month& x, const year_month& y) NOEXCEPT
2250 operator!=(const year_month& x, const year_month& y) NOEXCEPT
2258 operator<(const year_month& x, const year_month& y) NOEXCEPT
2268 operator>(const year_month& x, const year_month& y) NOEXCEPT
2276 operator<=(const year_month& x, const year_month& y) NOEXCEPT
2284 operator>=(const year_month& x, const year_month& y) NOEXCEPT
2292 year_month
2293 operator+(const year_month& ym, const months& dm) NOEXCEPT
2304 year_month
2305 operator+(const months& dm, const year_month& ym) NOEXCEPT
2313 year_month
2314 operator-(const year_month& ym, const months& dm) NOEXCEPT
2322 operator-(const year_month& x, const year_month& y) NOEXCEPT
2330 year_month
2331 operator+(const year_month& ym, const years& dy) NOEXCEPT
2338 year_month
2339 operator+(const years& dy, const year_month& ym) NOEXCEPT
2346 year_month
2347 operator-(const year_month& ym, const years& dy) NOEXCEPT
2357 low_level_fmt(std::basic_ostream<CharT, Traits>& os, const year_month& ym)
2368 operator<<(std::basic_ostream<CharT, Traits>& os, const year_month& ym)
3575 year_month
3583 year_month
3732 operator/(const year_month& ym, const day& d) NOEXCEPT
3740 operator/(const year_month& ym, int d) NOEXCEPT
3782 operator/(const year_month& ym, last_spec) NOEXCEPT
3824 operator/(const year_month& ym, const weekday_indexed& wdi) NOEXCEPT
3866 operator/(const year_month& ym, const weekday_last& wdl) NOEXCEPT
6184 to_stream(std::basic_ostream<CharT, Traits>& os, const CharT* fmt, const year_month& ym)
7981 from_stream(std::basic_istream<CharT, Traits>& is, const CharT* fmt, year_month& ym,