Home
last modified time | relevance | path

Searched refs:is_exhaustive_match_v (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/include/ftl/
Dmatch.h48 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()
/frameworks/native/include/ftl/details/
Dmatch.h34 constexpr bool is_exhaustive_match_v = (std::is_invocable_v<Matcher, Ts> && ...); variable