[llvm] [ADT] Add DenseSet::insert_range (PR #131567)
Jakub Kuderski via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 09:44:23 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));
----------------
kuhar wrote:
Yeah, that's why I called it 'sad' -- nice to have but not really possible today
https://github.com/llvm/llvm-project/pull/131567
More information about the llvm-commits
mailing list