[llvm] [ADT] Add set_intersects to check if there is any intersection (PR #127907)
Jakub Kuderski via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 16:51:40 PST 2025
================
@@ -157,6 +157,23 @@ bool set_is_subset(const S1Ty &S1, const S2Ty &S2) {
return true;
}
+template <class S1Ty, class S2Ty>
+bool set_intersects_impl(const S1Ty &S1, const S2Ty &S2) {
----------------
kuhar wrote:
Consider putting this in a `detail` namespace
https://github.com/llvm/llvm-project/pull/127907
More information about the llvm-commits
mailing list