[libcxx-commits] [PATCH] D130532: [libc++][ranges] Implement `std::ranges::partial_sort_copy`.

Hui via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Jul 26 05:59:33 PDT 2022


huixie90 accepted this revision.
huixie90 added inline comments.
This revision is now accepted and ready to land.


================
Comment at: libcxx/docs/Status/RangesAlgorithms.csv:62
 Write,partition_copy,Konstantin Varlamov,`D130070 <https://llvm.org/D130070>`_,✅
-Write,partial_sort_copy,Konstantin Varlamov,n/a,In progress
+Write,partial_sort_copy,Konstantin Varlamov,`TODO <https://llvm.org/TODO>`_,✅
 Merge,merge,Hui Xie,`D128611 <https://llvm.org/D128611>`_,✅
----------------
can fill in the patch number


================
Comment at: libcxx/test/std/algorithms/alg.sorting/alg.sort/partial.sort.copy/ranges_partial_sort_copy.pass.cpp:77
+
+struct Uncopyable {
+  Uncopyable(int&&);
----------------
nit: would `MoveOnly.h`work?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D130532/new/

https://reviews.llvm.org/D130532



More information about the libcxx-commits mailing list