[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:41 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) {
+ for (const auto &E : S1)
+ if (S2.count(E))
+ return true;
+ return false;
+}
+
+/// set_intersects(A, B) - Return true iff A ^ B is non empty
+template <class S1Ty, class S2Ty>
+bool set_intersects(const S1Ty &S1, const S2Ty &S2) {
+ if (S1.size() < S2.size())
+ return set_intersects_impl(S1, S2);
+ else
----------------
kuhar wrote:
nit: no else after return https://llvm.org/docs/CodingStandards.html#don-t-use-else-after-a-return (unless with `if constexpr`)
https://github.com/llvm/llvm-project/pull/127907
More information about the llvm-commits
mailing list