[llvm] [ADT] Use `adl_being`/`end` in `map_range` (PR #130508)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 9 12:59:52 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-adt
Author: Jakub Kuderski (kuhar)
<details>
<summary>Changes</summary>
This is to make sure that ADT helpers consistently use argument dependent lookup when dealing with input ranges.
This was a part of #<!-- -->87936 but reverted due to buildbot failures.
Also add `map_range` unit tests -- there were no pre-existing tests AFAICT.
---
Full diff: https://github.com/llvm/llvm-project/pull/130508.diff
2 Files Affected:
- (modified) llvm/include/llvm/ADT/STLExtras.h (+1-2)
- (modified) llvm/unittests/ADT/STLExtrasTest.cpp (+12)
``````````diff
diff --git a/llvm/include/llvm/ADT/STLExtras.h b/llvm/include/llvm/ADT/STLExtras.h
index ace5f60b572d7..97e41cc27e0a9 100644
--- a/llvm/include/llvm/ADT/STLExtras.h
+++ b/llvm/include/llvm/ADT/STLExtras.h
@@ -375,8 +375,7 @@ inline mapped_iterator<ItTy, FuncTy> map_iterator(ItTy I, FuncTy F) {
template <class ContainerTy, class FuncTy>
auto map_range(ContainerTy &&C, FuncTy F) {
- return make_range(map_iterator(std::begin(C), F),
- map_iterator(std::end(C), F));
+ return make_range(map_iterator(adl_begin(C), F), map_iterator(adl_end(C), F));
}
/// A base type of mapped iterator, that is useful for building derived
diff --git a/llvm/unittests/ADT/STLExtrasTest.cpp b/llvm/unittests/ADT/STLExtrasTest.cpp
index 406ff2bc16073..5b1f4cdd7bdaf 100644
--- a/llvm/unittests/ADT/STLExtrasTest.cpp
+++ b/llvm/unittests/ADT/STLExtrasTest.cpp
@@ -730,6 +730,18 @@ TEST(STLExtrasTest, DropEndDefaultTest) {
EXPECT_EQ(i, 4);
}
+TEST(STLExtrasTest, MapRangeTest) {
+ SmallVector<int, 5> Vec{0, 1, 2};
+ EXPECT_THAT(map_range(Vec, [](int V) { return V + 1; }),
+ ElementsAre(1, 2, 3));
+
+ // Make sure that we use the `begin`/`end` functions
+ // from `some_namespace`, using ADL.
+ some_namespace::some_struct S;
+ S.data = {3, 4, 5};
+ EXPECT_THAT(map_range(S, [](int V) { return V * 2; }), ElementsAre(6, 8, 10));
+}
+
TEST(STLExtrasTest, EarlyIncrementTest) {
std::list<int> L = {1, 2, 3, 4};
``````````
</details>
https://github.com/llvm/llvm-project/pull/130508
More information about the llvm-commits
mailing list