[llvm] [ADT] Add set_intersects to check if there is any intersection (PR #127907)
Teresa Johnson via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 07:51:09 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) {
----------------
teresajohnson wrote:
done
https://github.com/llvm/llvm-project/pull/127907
More information about the llvm-commits
mailing list