[libcxx-commits] [PATCH] D149539: [libc++][PSTL] Implement std::find{, _if, if_not}
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon May 1 08:33:57 PDT 2023
ldionne accepted this revision.
ldionne added inline comments.
This revision is now accepted and ready to land.
================
Comment at: libcxx/include/__algorithm/pstl_find.h:97
+find_if_not(_ExecutionPolicy&& __policy, _ForwardIterator __first, _ForwardIterator __last, _Predicate __pred) {
+ return std::find_if(__policy, __first, __last, std::not_fn(__pred));
+}
----------------
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D149539/new/
https://reviews.llvm.org/D149539
More information about the libcxx-commits
mailing list