[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


================
@@ -273,4 +273,15 @@ TEST(SetOperationsTest, SetIsSubset) {
   EXPECT_FALSE(set_is_subset(Set1, Set2));
 }
 
+TEST(SetOperationsTest, SetIntersects) {
+  std::set<int> Set1 = {1, 2, 3, 4};
+  std::set<int> Set2 = {3, 4, 5};
+  EXPECT_TRUE(set_intersects(Set1, Set2));
+  EXPECT_TRUE(set_intersects(Set2, Set1));
+
+  Set2 = {5, 6, 7};
+  EXPECT_FALSE(set_intersects(Set1, Set2));
+  EXPECT_FALSE(set_intersects(Set2, Set1));
+}
----------------
kuhar wrote:

Could you also add a testcase with empty sets (the usual source of edge cases)?

https://github.com/llvm/llvm-project/pull/127907


More information about the llvm-commits mailing list