Home
last modified time | relevance | path

Searched refs:__min_element_impl (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_min_element.h38 _LIBCPP_HIDE_FROM_ABI constexpr _Ip __min_element_impl(_Ip __first, _Sp __last, _Comp& __comp, _Pro… in __min_element_impl() function
57 return ranges::__min_element_impl(__first, __last, __comp, __proj);
65 return ranges::__min_element_impl(ranges::begin(__r), ranges::end(__r), __comp, __proj);
H A Dranges_max_element.h44 return ranges::__min_element_impl(__first, __last, __comp_lhs_rhs_swapped, __proj);
53 …return ranges::__min_element_impl(ranges::begin(__r), ranges::end(__r), __comp_lhs_rhs_swapped, __…
H A Dranges_min.h58 return *ranges::__min_element_impl(__il.begin(), __il.end(), __comp, __proj);
71 return *ranges::__min_element_impl(__first, __last, __comp, __proj);
H A Dranges_max.h61 return *ranges::__min_element_impl(__il.begin(), __il.end(), __comp_lhs_rhs_swapped, __proj);
79 …return *ranges::__min_element_impl(std::move(__first), std::move(__last), __comp_lhs_rhs_swapped, …