Lines Matching defs:weekday_indexed
11 // class weekday_indexed;
26 using weekday_indexed = std::chrono::weekday_indexed;
28 ASSERT_NOEXCEPT( std::declval<const weekday_indexed>().ok());
29 ASSERT_SAME_TYPE(bool, decltype(std::declval<const weekday_indexed>().ok()));
31 static_assert(!weekday_indexed{}.ok(), "");
32 static_assert( weekday_indexed{std::chrono::Sunday, 2}.ok(), "");
34 assert(!(weekday_indexed(std::chrono::Tuesday, 0).ok()));
37 weekday_indexed wdi(std::chrono::Tuesday, i);
43 weekday_indexed wdi(std::chrono::Tuesday, i);
48 assert(!(weekday_indexed(weekday{9U}, 1).ok()));