[llvm] [ADT] Add `DenseMap::insert_range` (PR #133600)
Jakub Kuderski via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 29 15:47:58 PDT 2025
================
@@ -302,6 +303,10 @@ class DenseMapBase : public DebugEpochBase {
insert(*I);
}
+ template <typename Range> void insert_range(Range &&R) {
----------------
kuhar wrote:
In this instance, I think it would be useful to add a comment explaining that `R` should be a range of key-value pairs to be inserted.
https://github.com/llvm/llvm-project/pull/133600
More information about the llvm-commits
mailing list