Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_minmax_element.h51 auto __ret = std::__minmax_element_impl(std::move(__first), std::move(__last), __comp, __proj);
60 auto __ret = std::__minmax_element_impl(ranges::begin(__r), ranges::end(__r), __comp, __proj);
H A Dminmax_element.h43 __minmax_element_impl(_Iter __first, _Sent __last, _Comp& __comp, _Proj& __proj) { in __minmax_element_impl() function
89 return std::__minmax_element_impl(__first, __last, __comp, __proj); in minmax_element()
H A Dranges_minmax.h72 auto __iters = std::__minmax_element_impl(__il.begin(), __il.end(), __comp, __proj);
114 auto __result = std::__minmax_element_impl(__first, __last, __comp, __proj);
H A Dminmax.h45 auto __ret = std::__minmax_element_impl(__t.begin(), __t.end(), __comp, __proj); in minmax()