Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/include/__algorithm/
H A Dranges_min_element.h36 _Ip __min_element_impl(_Ip __first, _Sp __last, _Comp& __comp, _Proj& __proj) { in __min_element_impl() function
53 return ranges::__min_element_impl(__first, __last, __comp, __proj);
60 return ranges::__min_element_impl(ranges::begin(__r), ranges::end(__r), __comp, __proj);
H A Dranges_max_element.h39 return ranges::__min_element_impl(__first, __last, __comp_lhs_rhs_swapped, __proj);
47 …return ranges::__min_element_impl(ranges::begin(__r), ranges::end(__r), __comp_lhs_rhs_swapped, __…
H A Dranges_min.h51 return *ranges::__min_element_impl(__il.begin(), __il.end(), __comp, __proj);
65 return *ranges::__min_element_impl(__first, __last, __comp, __proj);
H A Dranges_max.h54 return *ranges::__min_element_impl(__il.begin(), __il.end(), __comp_lhs_rhs_swapped, __proj);
69 …return *ranges::__min_element_impl(std::move(__first), std::move(__last), __comp_lhs_rhs_swapped, …