File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 2662
2662
ForwardIterator first, ForwardIterator last, Compare comp);
2663
2663
2664
2664
namespace ranges {
2665
+ template<class I>
2666
+ using minmax_element_result = minmax_result<I>;
2667
+
2665
2668
template<ForwardIterator I, Sentinel<I> S, class Proj = identity,
2666
2669
IndirectStrictWeakOrder<projected<I, Proj>> Comp = ranges::less<>>
2667
- constexpr minmax_result <I>
2670
+ constexpr minmax_element_result <I>
2668
2671
minmax_element(I first, S last, Comp comp = {}, Proj proj = {});
2669
2672
template<ForwardRange R, class Proj = identity,
2670
2673
IndirectStrictWeakOrder<projected<iterator_t<R>, Proj>> Comp = ranges::less<>>
2671
- constexpr minmax_result <safe_iterator_t<R>>
2674
+ constexpr minmax_element_result <safe_iterator_t<R>>
2672
2675
minmax_element(R&& r, Comp comp = {}, Proj proj = {});
2673
2676
}
2674
2677
You can’t perform that action at this time.
0 commit comments