forked from OSchip/llvm-project
[libc++][ranges] Implement ranges::max
Reviewed By: Mordante, var-const, #libc Spies: sstefan1, libcxx-commits, mgorny Differential Revision: https://reviews.llvm.org/D122002
This commit is contained in:
parent
1fe01a9346
commit
e476df5629
|
@ -7,7 +7,7 @@ Search,find_if,Nikolas Klauser,`D121248 <https://reviews.llvm.org/D121248>`_,✅
|
|||
Search,find_if_not,Nikolas Klauser,`D121248 <https://reviews.llvm.org/D121248>`_,✅
|
||||
Search,find_first_of,Not assigned,n/a,Not started
|
||||
Search,adjacent_find,Not assigned,n/a,Not started
|
||||
Search,mismatch,Nikolas Klauser,`D117817 <https://llvm.org/D117817>`,Complete
|
||||
Search,mismatch,Nikolas Klauser,`D117817 <https://llvm.org/D117817>`_,✅
|
||||
Search,equal,Not assigned,n/a,Not started
|
||||
Search,lexicographical_compare,Not assigned,n/a,Not started
|
||||
Search,partition_point,Christopher Di Bella,`D105794 <https://llvm.org/D105794>`_,Under review
|
||||
|
@ -16,7 +16,7 @@ Search,upper_bound,Christopher Di Bella,`D105795 <https://llvm.org/D105795>`_,Un
|
|||
Search,equal_range,Christopher Di Bella,n/a,Not started
|
||||
Search,binary_search,Christopher Di Bella,n/a,Not started
|
||||
Search,min,Nikolas Klauser,`D119589 <https://llvm.org/D119589>`_,✅
|
||||
Search,max,Not assigned,n/a,Not started
|
||||
Search,max,Nikolas Klauser,`D122002 <https://llvm.org/D122002>`_,✅
|
||||
Search,minmax,Not assigned,n/a,Not started
|
||||
Search,min_element,Nikolas Klauser,`D117025 <https://llvm.org/D117025>`_,✅
|
||||
Search,max_element,Nikolas Klauser,`D117523 <https://llvm.org/D117523>`_,✅
|
||||
|
|
|
|
@ -69,6 +69,7 @@ set(files
|
|||
__algorithm/ranges_find.h
|
||||
__algorithm/ranges_find_if.h
|
||||
__algorithm/ranges_find_if_not.h
|
||||
__algorithm/ranges_max.h
|
||||
__algorithm/ranges_max_element.h
|
||||
__algorithm/ranges_min.h
|
||||
__algorithm/ranges_min_element.h
|
||||
|
|
|
@ -0,0 +1,93 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
// See https://llvm.org/LICENSE.txt for license information.
|
||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef _LIBCPP___ALGORITHM_RANGES_MAX_H
|
||||
#define _LIBCPP___ALGORITHM_RANGES_MAX_H
|
||||
|
||||
#include <__algorithm/ranges_min_element.h>
|
||||
#include <__assert>
|
||||
#include <__concepts/copyable.h>
|
||||
#include <__config>
|
||||
#include <__functional/identity.h>
|
||||
#include <__functional/invoke.h>
|
||||
#include <__functional/ranges_operations.h>
|
||||
#include <__iterator/concepts.h>
|
||||
#include <__iterator/projected.h>
|
||||
#include <__ranges/access.h>
|
||||
#include <__ranges/concepts.h>
|
||||
#include <__utility/move.h>
|
||||
#include <initializer_list>
|
||||
|
||||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
||||
# pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES)
|
||||
|
||||
_LIBCPP_PUSH_MACROS
|
||||
#include <__undef_macros>
|
||||
|
||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||
|
||||
namespace ranges {
|
||||
namespace __max {
|
||||
struct __fn {
|
||||
template <class _Tp, class _Proj = identity,
|
||||
indirect_strict_weak_order<projected<const _Tp*, _Proj>> _Comp = ranges::less>
|
||||
_LIBCPP_HIDE_FROM_ABI constexpr
|
||||
const _Tp& operator()(const _Tp& __a, const _Tp& __b, _Comp __comp = {}, _Proj __proj = {}) const {
|
||||
return std::invoke(__comp, std::invoke(__proj, __a), std::invoke(__proj, __b)) ? __b : __a;
|
||||
}
|
||||
|
||||
template <copyable _Tp, class _Proj = identity,
|
||||
indirect_strict_weak_order<projected<const _Tp*, _Proj>> _Comp = ranges::less>
|
||||
_LIBCPP_HIDE_FROM_ABI constexpr
|
||||
_Tp operator()(initializer_list<_Tp> __il, _Comp __comp = {}, _Proj __proj = {}) const {
|
||||
_LIBCPP_ASSERT(__il.begin() != __il.end(), "initializer_list must contain at least one element");
|
||||
|
||||
auto __comp_lhs_rhs_swapped = [&](auto&& __lhs, auto&& __rhs) { return std::invoke(__comp, __rhs, __lhs); };
|
||||
return *ranges::__min_element_impl(__il.begin(), __il.end(), __comp_lhs_rhs_swapped, __proj);
|
||||
}
|
||||
|
||||
template <input_range _Rp, class _Proj = identity,
|
||||
indirect_strict_weak_order<projected<iterator_t<_Rp>, _Proj>> _Comp = ranges::less>
|
||||
requires indirectly_copyable_storable<iterator_t<_Rp>, range_value_t<_Rp>*>
|
||||
_LIBCPP_HIDE_FROM_ABI constexpr
|
||||
range_value_t<_Rp> operator()(_Rp&& __r, _Comp __comp = {}, _Proj __proj = {}) const {
|
||||
auto __first = ranges::begin(__r);
|
||||
auto __last = ranges::end(__r);
|
||||
|
||||
_LIBCPP_ASSERT(__first != __last, "range must contain at least one element");
|
||||
|
||||
if constexpr (forward_range<_Rp>) {
|
||||
auto __comp_lhs_rhs_swapped = [&](auto&& __lhs, auto&& __rhs) { return std::invoke(__comp, __rhs, __lhs); };
|
||||
return *ranges::__min_element_impl(std::move(__first), std::move(__last), __comp_lhs_rhs_swapped, __proj);
|
||||
} else {
|
||||
range_value_t<_Rp> __result = *__first;
|
||||
while (++__first != __last) {
|
||||
if (std::invoke(__comp, std::invoke(__proj, __result), std::invoke(__proj, *__first)))
|
||||
__result = *__first;
|
||||
}
|
||||
return __result;
|
||||
}
|
||||
}
|
||||
};
|
||||
} // namespace __max
|
||||
|
||||
inline namespace __cpo {
|
||||
inline constexpr auto max = __max::__fn{};
|
||||
} // namespace __cpo
|
||||
} // namespace ranges
|
||||
|
||||
_LIBCPP_END_NAMESPACE_STD
|
||||
|
||||
_LIBCPP_POP_MACROS
|
||||
|
||||
#endif // _LIBCPP_STD_VER > 17 && && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES)
|
||||
|
||||
#endif // _LIBCPP___ALGORITHM_RANGES_MAX_H
|
|
@ -9,6 +9,7 @@
|
|||
#ifndef _LIBCPP___ALGORITHM_RANGES_MAX_ELEMENT_H
|
||||
#define _LIBCPP___ALGORITHM_RANGES_MAX_ELEMENT_H
|
||||
|
||||
#include <__algorithm/ranges_min_element.h>
|
||||
#include <__config>
|
||||
#include <__functional/identity.h>
|
||||
#include <__functional/invoke.h>
|
||||
|
@ -30,31 +31,20 @@ _LIBCPP_BEGIN_NAMESPACE_STD
|
|||
namespace ranges {
|
||||
namespace __max_element {
|
||||
struct __fn {
|
||||
template <class _Ip, class _Sp, class _Proj, class _Comp>
|
||||
_LIBCPP_HIDE_FROM_ABI static constexpr
|
||||
_Ip __go(_Ip __first, _Sp __last, _Comp& __comp, _Proj& __proj) {
|
||||
if (__first == __last)
|
||||
return __first;
|
||||
|
||||
_Ip __i = __first;
|
||||
while (++__i != __last)
|
||||
if (std::invoke(__comp, std::invoke(__proj, *__first), std::invoke(__proj, *__i)))
|
||||
__first = __i;
|
||||
return __first;
|
||||
}
|
||||
|
||||
template <forward_iterator _Ip, sentinel_for<_Ip> _Sp, class _Proj = identity,
|
||||
indirect_strict_weak_order<projected<_Ip, _Proj>> _Comp = ranges::less>
|
||||
_LIBCPP_HIDE_FROM_ABI constexpr
|
||||
_Ip operator()(_Ip __first, _Sp __last, _Comp __comp = {}, _Proj __proj = {}) const {
|
||||
return __go(__first, __last, __comp, __proj);
|
||||
auto __comp_lhs_rhs_swapped = [&](auto&& __lhs, auto&& __rhs) { return std::invoke(__comp, __rhs, __lhs); };
|
||||
return __min_element_impl(__first, __last, __comp_lhs_rhs_swapped, __proj);
|
||||
}
|
||||
|
||||
template <forward_range _Rp, class _Proj = identity,
|
||||
indirect_strict_weak_order<projected<iterator_t<_Rp>, _Proj>> _Comp = ranges::less>
|
||||
_LIBCPP_HIDE_FROM_ABI constexpr
|
||||
borrowed_iterator_t<_Rp> operator()(_Rp&& __r, _Comp __comp = {}, _Proj __proj = {}) const {
|
||||
return __go(ranges::begin(__r), ranges::end(__r), __comp, __proj);
|
||||
auto __comp_lhs_rhs_swapped = [&](auto&& __lhs, auto&& __rhs) { return std::invoke(__comp, __rhs, __lhs); };
|
||||
return __min_element_impl(ranges::begin(__r), ranges::end(__r), __comp_lhs_rhs_swapped, __proj);
|
||||
}
|
||||
};
|
||||
} // namespace __max_element
|
||||
|
|
|
@ -83,19 +83,33 @@ namespace ranges {
|
|||
constexpr borrowed_iterator_t<R>
|
||||
find_if_not(R&& r, Pred pred, Proj proj = {}); // since C++20
|
||||
|
||||
template<class T, class Proj = identity,
|
||||
indirect_strict_weak_order<projected<const T*, Proj>> Comp = ranges::less>
|
||||
constexpr const T& min(const T& a, const T& b, Comp comp = {}, Proj proj = {}); // since C++20
|
||||
template<class T, class Proj = identity,
|
||||
indirect_strict_weak_order<projected<const T*, Proj>> Comp = ranges::less>
|
||||
constexpr const T& min(const T& a, const T& b, Comp comp = {}, Proj proj = {}); // since C++20
|
||||
|
||||
template<copyable T, class Proj = identity,
|
||||
indirect_strict_weak_order<projected<const T*, Proj>> Comp = ranges::less>
|
||||
constexpr T min(initializer_list<T> r, Comp comp = {}, Proj proj = {}); // since C++20
|
||||
template<copyable T, class Proj = identity,
|
||||
indirect_strict_weak_order<projected<const T*, Proj>> Comp = ranges::less>
|
||||
constexpr T min(initializer_list<T> r, Comp comp = {}, Proj proj = {}); // since C++20
|
||||
|
||||
template<input_range R, class Proj = identity,
|
||||
indirect_strict_weak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less>
|
||||
requires indirectly_copyable_storable<iterator_t<R>, range_value_t<R>*>
|
||||
constexpr range_value_t<R>
|
||||
min(R&& r, Comp comp = {}, Proj proj = {}); // since C++20
|
||||
|
||||
template<class T, class Proj = identity,
|
||||
indirect_strict_weak_order<projected<const T*, Proj>> Comp = ranges::less>
|
||||
constexpr const T& max(const T& a, const T& b, Comp comp = {}, Proj proj = {}); // since C++20
|
||||
|
||||
template<copyable T, class Proj = identity,
|
||||
indirect_strict_weak_order<projected<const T*, Proj>> Comp = ranges::less>
|
||||
constexpr T max(initializer_list<T> r, Comp comp = {}, Proj proj = {}); // since C++20
|
||||
|
||||
template<input_range R, class Proj = identity,
|
||||
indirect_strict_weak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less>
|
||||
requires indirectly_copyable_storable<iterator_t<R>, range_value_t<R>*>
|
||||
constexpr range_value_t<R>
|
||||
max(R&& r, Comp comp = {}, Proj proj = {}); // since C++20
|
||||
}
|
||||
|
||||
constexpr bool // constexpr in C++20
|
||||
|
@ -816,6 +830,7 @@ template <class BidirectionalIterator, class Compare>
|
|||
#include <__algorithm/ranges_find.h>
|
||||
#include <__algorithm/ranges_find_if.h>
|
||||
#include <__algorithm/ranges_find_if_not.h>
|
||||
#include <__algorithm/ranges_max.h>
|
||||
#include <__algorithm/ranges_max_element.h>
|
||||
#include <__algorithm/ranges_min.h>
|
||||
#include <__algorithm/ranges_min_element.h>
|
||||
|
|
|
@ -297,6 +297,7 @@ module std [system] {
|
|||
module ranges_find { private header "__algorithm/ranges_find.h" }
|
||||
module ranges_find_if { private header "__algorithm/ranges_find_if.h" }
|
||||
module ranges_find_if_not { private header "__algorithm/ranges_find_if_not.h" }
|
||||
module ranges_max { private header "__algorithm/ranges_max.h" }
|
||||
module ranges_max_element { private header "__algorithm/ranges_max_element.h" }
|
||||
module ranges_min { private header "__algorithm/ranges_min.h" }
|
||||
module ranges_min_element { private header "__algorithm/ranges_min_element.h" }
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
// See https://llvm.org/LICENSE.txt for license information.
|
||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// REQUIRES: modules-build
|
||||
|
||||
// WARNING: This test was generated by 'generate_private_header_tests.py'
|
||||
// and should not be edited manually.
|
||||
|
||||
// expected-error@*:* {{use of private header from outside its module: '__algorithm/ranges_max.h'}}
|
||||
#include <__algorithm/ranges_max.h>
|
|
@ -0,0 +1,261 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
// See https://llvm.org/LICENSE.txt for license information.
|
||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <algorithm>
|
||||
|
||||
// UNSUPPORTED: c++03, c++11, c++14, c++17
|
||||
// UNSUPPORTED: libcpp-has-no-incomplete-ranges
|
||||
|
||||
// template<class T, class Proj = identity,
|
||||
// indirect_strict_weak_order<projected<const T*, Proj>> Comp = ranges::less>
|
||||
// constexpr const T& ranges::max(const T& a, const T& b, Comp comp = {}, Proj proj = {});
|
||||
//
|
||||
// template<copyable T, class Proj = identity,
|
||||
// indirect_strict_weak_order<projected<const T*, Proj>> Comp = ranges::less>
|
||||
// constexpr T ranges::max(initializer_list<T> r, Comp comp = {}, Proj proj = {});
|
||||
//
|
||||
// template<input_range R, class Proj = identity,
|
||||
// indirect_strict_weak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less>
|
||||
// requires indirectly_copyable_storable<iterator_t<R>, range_value_t<R>*>
|
||||
// constexpr range_value_t<R>
|
||||
// ranges::max(R&& r, Comp comp = {}, Proj proj = {});
|
||||
|
||||
#include <algorithm>
|
||||
#include <array>
|
||||
#include <cassert>
|
||||
#include <ranges>
|
||||
|
||||
#include "almost_satisfies_types.h"
|
||||
#include "test_iterators.h"
|
||||
#include "test_macros.h"
|
||||
|
||||
template <class T>
|
||||
concept HasMaxR = requires { std::ranges::max(std::declval<T>()); };
|
||||
|
||||
struct NoLessThanOp {};
|
||||
struct NotTotallyOrdered {
|
||||
int i;
|
||||
bool operator<(const NotTotallyOrdered& o) const { return i < o.i; }
|
||||
};
|
||||
|
||||
struct Movable {
|
||||
Movable& operator=(Movable&&) = default;
|
||||
Movable(Movable&&) = default;
|
||||
Movable(const Movable&) = delete;
|
||||
};
|
||||
|
||||
static_assert(!HasMaxR<int>);
|
||||
|
||||
static_assert(HasMaxR<int(&)[10]>);
|
||||
static_assert(HasMaxR<int(&&)[10]>);
|
||||
static_assert(!HasMaxR<NoLessThanOp(&)[10]>);
|
||||
static_assert(!HasMaxR<NotTotallyOrdered(&)[10]>);
|
||||
static_assert(!HasMaxR<Movable(&)[10]>);
|
||||
|
||||
static_assert(HasMaxR<std::initializer_list<int>>);
|
||||
static_assert(!HasMaxR<std::initializer_list<NoLessThanOp>>);
|
||||
static_assert(!HasMaxR<std::initializer_list<NotTotallyOrdered>>);
|
||||
static_assert(!HasMaxR<std::initializer_list<Movable>>);
|
||||
static_assert(!HasMaxR<InputRangeNotDerivedFrom>);
|
||||
static_assert(!HasMaxR<InputRangeNotIndirectlyReadable>);
|
||||
static_assert(!HasMaxR<InputRangeNotInputOrOutputIterator>);
|
||||
static_assert(!HasMaxR<InputRangeNotSentinelSemiregular>);
|
||||
static_assert(!HasMaxR<InputRangeNotSentinelEqualityComparableWith>);
|
||||
|
||||
template <class T, class U = T>
|
||||
concept HasMax2 = requires { std::ranges::max(std::declval<T>(), std::declval<U>()); };
|
||||
|
||||
static_assert(HasMax2<int>);
|
||||
static_assert(!HasMax2<int, long>);
|
||||
|
||||
static_assert(std::is_same_v<decltype(std::ranges::max(1, 2)), const int&>);
|
||||
|
||||
constexpr void test_2_arguments() {
|
||||
assert(std::ranges::max(1, 2) == 2);
|
||||
assert(std::ranges::max(2, 1) == 2);
|
||||
// test comparator
|
||||
assert(std::ranges::max(1, 2, std::ranges::greater{}) == 1);
|
||||
// test projection
|
||||
assert(std::ranges::max(1, 2, std::ranges::less{}, [](int i){ return i == 1 ? 10 : i; }) == 1);
|
||||
|
||||
{ // check that std::invoke is used
|
||||
struct S { int i; };
|
||||
S a[3] = { S{2}, S{1}, S{3} };
|
||||
decltype(auto) ret = std::ranges::max(a[0], a[1], {}, &S::i);
|
||||
ASSERT_SAME_TYPE(decltype(ret), const S&);
|
||||
assert(&ret == &a[0]);
|
||||
assert(ret.i == 2);
|
||||
}
|
||||
|
||||
{ // check that pointers are compared and not a range
|
||||
int i[1];
|
||||
int* a[] = {i, i + 1};
|
||||
auto ret = std::ranges::max(a[0], a[1]);
|
||||
assert(ret == i + 1);
|
||||
}
|
||||
|
||||
{ // test predicate and projection count
|
||||
int compares = 0;
|
||||
int projections = 0;
|
||||
auto comparator = [&](int x, int y) {
|
||||
++compares;
|
||||
return x < y;
|
||||
};
|
||||
auto projection = [&](int x) {
|
||||
++projections;
|
||||
return x;
|
||||
};
|
||||
auto ret = std::ranges::max(1, 2, comparator, projection);
|
||||
assert(ret == 2);
|
||||
assert(compares == 1);
|
||||
assert(projections == 2);
|
||||
}
|
||||
|
||||
{ // check that the first argument is returned
|
||||
struct S { int check; int other; };
|
||||
auto ret = std::ranges::max(S {0, 1}, S {0, 2}, {}, &S::check);
|
||||
assert(ret.other == 1);
|
||||
}
|
||||
}
|
||||
|
||||
constexpr void test_initializer_list() {
|
||||
{ // test projection
|
||||
auto proj = [](int i) { return i == 5 ? 100 : i; };
|
||||
int ret = std::ranges::max({7, 6, 9, 3, 5, 1, 2, 4}, {}, proj);
|
||||
assert(ret == 5);
|
||||
}
|
||||
|
||||
{ // test comparator
|
||||
int ret = std::ranges::max({7, 6, 9, 3, 5, 1, 2, 4}, std::ranges::greater{});
|
||||
assert(ret == 1);
|
||||
}
|
||||
|
||||
{ // check that complexity requirements are met
|
||||
int compares = 0;
|
||||
int projections = 0;
|
||||
auto comparator = [&](int a, int b) {
|
||||
++compares;
|
||||
return a < b;
|
||||
};
|
||||
auto projection = [&](int a) {
|
||||
++projections;
|
||||
return a;
|
||||
};
|
||||
std::same_as<int> decltype(auto) ret = std::ranges::max({1, 2, 3}, comparator, projection);
|
||||
assert(ret == 3);
|
||||
assert(compares == 2);
|
||||
assert(projections == 4);
|
||||
}
|
||||
|
||||
{ // check that std::invoke is used
|
||||
struct S { int i; };
|
||||
std::same_as<S> decltype(auto) ret = std::ranges::max({ S{2}, S{1}, S{3} }, {}, &S::i);
|
||||
assert(ret.i == 3);
|
||||
}
|
||||
|
||||
{ // check that the first largest element is returned
|
||||
{ // where the first element is the largest
|
||||
struct S { int check; int other; };
|
||||
auto ret = std::ranges::max({ S{1, 1}, S{0, 2}, S{1, 3} }, {}, &S::check);
|
||||
assert(ret.check == 1);
|
||||
assert(ret.other == 1);
|
||||
}
|
||||
{ // where the first element isn't the largest
|
||||
struct S { int check; int other; };
|
||||
auto ret = std::ranges::max({ S{0, 1}, S{1, 2}, S{1, 3} }, {}, &S::check);
|
||||
assert(ret.check == 1);
|
||||
assert(ret.other == 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
template <class It, class Sent = It>
|
||||
constexpr void test_range_types() {
|
||||
int a[] = {7, 6, 9, 3, 5, 1, 2, 4};
|
||||
auto range = std::ranges::subrange(It(a), Sent(It(a + 8)));
|
||||
int ret = std::ranges::max(range);
|
||||
assert(ret == 9);
|
||||
}
|
||||
|
||||
constexpr void test_range() {
|
||||
{ // check that all range types work
|
||||
test_range_types<cpp20_input_iterator<int*>, sentinel_wrapper<cpp20_input_iterator<int*>>>();
|
||||
test_range_types<forward_iterator<int*>>();
|
||||
test_range_types<bidirectional_iterator<int*>>();
|
||||
test_range_types<random_access_iterator<int*>>();
|
||||
test_range_types<contiguous_iterator<int*>>();
|
||||
}
|
||||
|
||||
int a[] = {7, 6, 9, 3, 5, 1, 2, 4};
|
||||
{ // test projection
|
||||
auto proj = [](int& i) { return i == 5 ? 100 : i; };
|
||||
int ret = std::ranges::max(a, std::ranges::less{}, proj);
|
||||
assert(ret == 5);
|
||||
}
|
||||
|
||||
{ // test comparator
|
||||
int ret = std::ranges::max(a, std::ranges::greater{});
|
||||
assert(ret == 1);
|
||||
}
|
||||
|
||||
{ // check that predicate and projection call counts are correct
|
||||
int compares = 0;
|
||||
int projections = 0;
|
||||
auto comparator = [&](int x, int y) {
|
||||
++compares;
|
||||
return x < y;
|
||||
};
|
||||
auto projection = [&](int x) {
|
||||
++projections;
|
||||
return x;
|
||||
};
|
||||
std::same_as<int> decltype(auto) ret = std::ranges::max(std::array{1, 2, 3}, comparator, projection);
|
||||
assert(ret == 3);
|
||||
assert(compares == 2);
|
||||
assert(projections == 4);
|
||||
}
|
||||
|
||||
{ // check that std::invoke is used
|
||||
struct S { int i; };
|
||||
S b[3] = { S{2}, S{1}, S{3} };
|
||||
std::same_as<S> decltype(auto) ret = std::ranges::max(b, {}, &S::i);
|
||||
assert(ret.i == 3);
|
||||
}
|
||||
|
||||
{ // check that the first largest element is returned
|
||||
{ // where the first element is the largest
|
||||
struct S { int check; int other; };
|
||||
S b[] = { S{1, 1}, S{0, 2}, S{1, 3} };
|
||||
auto ret = std::ranges::max(b, {}, &S::check);
|
||||
assert(ret.check == 1);
|
||||
assert(ret.other == 1);
|
||||
}
|
||||
{ // where the first element isn't the largest
|
||||
struct S { int check; int other; };
|
||||
S b[] = { S{0, 1}, S{1, 2}, S{1, 3} };
|
||||
auto ret = std::ranges::max(b, {}, &S::check);
|
||||
assert(ret.check == 1);
|
||||
assert(ret.other == 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
constexpr bool test() {
|
||||
test_2_arguments();
|
||||
test_initializer_list();
|
||||
test_range();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
int main(int, char**) {
|
||||
test();
|
||||
static_assert(test());
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue