Searched refs:is_exhaustive_match_v (Results 1 – 2 of 2) sorted by relevance
48 static_assert(details::is_exhaustive_match_v<decltype(matcher), Ts&...>, "Non-exhaustive match"); in decltype()56 static_assert(details::is_exhaustive_match_v<decltype(matcher), const Ts&...>, in decltype()
34 constexpr bool is_exhaustive_match_v = (std::is_invocable_v<Matcher, Ts> && ...); variable