[libcxx-commits] [PATCH] D145285: [libc++] Refactor __less

Nikolas Klauser via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Mar 3 16:25:27 PST 2023


philnik created this revision.
philnik added reviewers: ldionne, Mordante.
Herald added a subscriber: mgrang.
Herald added a project: All.
philnik requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.

This simplifies the usage of `__less` by making the class not depend on the types compared, but instead the `operator()`. We can't remove the template completely because we explicitly instantiate `std::__sort` with `__less<T>`.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D145285

Files:
  libcxx/include/__algorithm/binary_search.h
  libcxx/include/__algorithm/clamp.h
  libcxx/include/__algorithm/comp.h
  libcxx/include/__algorithm/equal_range.h
  libcxx/include/__algorithm/includes.h
  libcxx/include/__algorithm/inplace_merge.h
  libcxx/include/__algorithm/is_heap.h
  libcxx/include/__algorithm/is_heap_until.h
  libcxx/include/__algorithm/is_sorted.h
  libcxx/include/__algorithm/is_sorted_until.h
  libcxx/include/__algorithm/lexicographical_compare.h
  libcxx/include/__algorithm/lower_bound.h
  libcxx/include/__algorithm/make_heap.h
  libcxx/include/__algorithm/max.h
  libcxx/include/__algorithm/max_element.h
  libcxx/include/__algorithm/merge.h
  libcxx/include/__algorithm/min.h
  libcxx/include/__algorithm/min_element.h
  libcxx/include/__algorithm/minmax.h
  libcxx/include/__algorithm/minmax_element.h
  libcxx/include/__algorithm/next_permutation.h
  libcxx/include/__algorithm/partial_sort.h
  libcxx/include/__algorithm/partial_sort_copy.h
  libcxx/include/__algorithm/pop_heap.h
  libcxx/include/__algorithm/prev_permutation.h
  libcxx/include/__algorithm/push_heap.h
  libcxx/include/__algorithm/set_difference.h
  libcxx/include/__algorithm/set_intersection.h
  libcxx/include/__algorithm/set_symmetric_difference.h
  libcxx/include/__algorithm/set_union.h
  libcxx/include/__algorithm/sort.h
  libcxx/include/__algorithm/sort_heap.h
  libcxx/include/__algorithm/stable_sort.h
  libcxx/include/__algorithm/upper_bound.h
  libcxx/include/forward_list
  libcxx/include/list
  libcxx/src/algorithm.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145285.502309.patch
Type: text/x-patch
Size: 26629 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230304/57e2bb3c/attachment-0001.bin>


More information about the libcxx-commits mailing list