Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/include/__algorithm/
H A Dranges_minmax_element.h47 auto __ret = std::__minmax_element_impl(std::move(__first), std::move(__last), __comp, __proj);
56 auto __ret = std::__minmax_element_impl(ranges::begin(__r), ranges::end(__r), __comp, __proj);
H A Dminmax_element.h43 pair<_Iter, _Iter> __minmax_element_impl(_Iter __first, _Sent __last, _Comp& __comp, _Proj& __proj)… in __minmax_element_impl() function
90 return std::__minmax_element_impl(__first, __last, __comp, __proj); in minmax_element()
H A Dranges_minmax.h59 auto __iters = std::__minmax_element_impl(__il.begin(), __il.end(), __comp, __proj);
75 auto __result = std::__minmax_element_impl(__first, __last, __comp, __proj);
H A Dminmax.h52 auto __ret = std::__minmax_element_impl(__t.begin(), __t.end(), __comp, __proj); in minmax()