[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
================
@@ -379,6 +379,17 @@ TEST(DenseMapCustomTest, EqualityComparison) {
EXPECT_NE(M1, M3);
}
+TEST(DenseMapCustomTest, InsertRange) {
+ DenseMap<int, int> M;
+
+ std::pair<int, int> InputVals[3] = {{0, 0}, {0, 1}, {1, 2}};
+ M.insert_range(InputVals);
+
+ EXPECT_EQ(2u, M.size());
----------------
kuhar wrote:
```suggestion
EXPECT_EQ(M.size(), 2u);
```
We typically put constants on the RHS of comparisons, especially with how gtest presents actual/expected values.
https://github.com/llvm/llvm-project/pull/133600
More information about the llvm-commits
mailing list