[llvm] [ADT] Add DenseSet::insert_range (PR #131567)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 09:36:41 PDT 2025


================
@@ -237,6 +238,10 @@ class DenseSetImpl {
     for (; I != E; ++I)
       insert(*I);
   }
+
+  template <typename Range> void insert_range(Range &&R) {
+    insert(adl_begin(R), adl_end(R));
----------------
kazutakahirata wrote:

What kind of use cases do you have in mind?  We cannot forward the values because we have to uses of `R`?


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


More information about the llvm-commits mailing list