You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ADT] Simplify TypesAreDistinct with std::conjunction (NFC) (#157228)
This patch uses std::conjunction to succinctly compute "AND" of:
- std::negation<is_one_of<T, Us...>>
- TypesAreDistinct<Us...> // recursive step
This way, we can eliminate the entire "detail" block.
0 commit comments