[libcxx-commits] [PATCH] D129741: [libc++][ranges][NFC] Consolidate range algorithm checks for returning `dangling`.
Konstantin Varlamov via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jul 14 01:26:36 PDT 2022
var-const added inline comments.
================
Comment at: libcxx/test/std/algorithms/ranges_robust_against_nonbool_predicates.compile.pass.cpp:39
+template <class Func, std::ranges::range Input, class ...Args>
+void test(Func&& func, Input& in, Args&& ...args) {
+ func(in.begin(), in.end(), std::forward<Args>(args)...);
----------------
I somehow missed this in the initial implementation -- variadics make things so much simpler.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D129741/new/
https://reviews.llvm.org/D129741
More information about the libcxx-commits
mailing list