Lines Matching defs:month
13 // constexpr chrono::month month() const noexcept;
26 using month = std::chrono::month;
29 ASSERT_NOEXCEPT( std::declval<const year_month>().month());
30 ASSERT_SAME_TYPE(month, decltype(std::declval<const year_month>().month()));
32 static_assert( year_month{}.month() == month{}, "");
36 year_month ym(year{1234}, month{i});
37 assert( static_cast<unsigned>(ym.month()) == i);