[libc++][ranges] Implement `std::ranges::partition_{point,copy}`.
authorKonstantin Varlamov <varconst@apple.com>
Wed, 20 Jul 2022 08:57:13 +0000 (01:57 -0700)
committerKonstantin Varlamov <varconst@apple.com>
Wed, 20 Jul 2022 18:39:07 +0000 (11:39 -0700)
commit065202f3ca9d32e32a1d9b2995e779ced64950b2
tree9d7e3fc2304068a4b18d66e4b37b4eadbfc1d3f3
parent15f685eaa8861d69315f65ed53a00f83c3365f0e
[libc++][ranges] Implement `std::ranges::partition_{point,copy}`.

Reviewed By: #libc, huixie90, ldionne

Differential Revision: https://reviews.llvm.org/D130070
18 files changed:
libcxx/docs/Status/RangesAlgorithms.csv
libcxx/include/__algorithm/ranges_partition_copy.h
libcxx/include/__algorithm/ranges_partition_point.h
libcxx/include/algorithm
libcxx/test/libcxx/algorithms/ranges_robust_against_copying_comparators.pass.cpp
libcxx/test/libcxx/algorithms/ranges_robust_against_copying_projections.pass.cpp
libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/ranges_partition.pass.cpp
libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/ranges_partition_copy.pass.cpp
libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/ranges_partition_point.pass.cpp
libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/ranges_stable_partition.pass.cpp
libcxx/test/std/algorithms/ranges_result_alias_declarations.compile.pass.cpp
libcxx/test/std/algorithms/ranges_robust_against_dangling.pass.cpp
libcxx/test/std/algorithms/ranges_robust_against_nonbool_predicates.pass.cpp
libcxx/test/std/algorithms/ranges_robust_against_omitting_invoke.pass.cpp
libcxx/test/std/algorithms/ranges_robust_against_proxy_iterators.pass.cpp
libcxx/test/std/library/description/conventions/customization.point.object/niebloid.compile.pass.cpp
libcxx/test/support/counting_predicates.h
libcxx/test/support/counting_projection.h [new file with mode: 0644]