Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dmin_element.h32 __min_element(_Iter __first, _Sent __last, _Comp __comp, _Proj& __proj) { in __min_element() function
45 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Iter __min_element(_Iter __first, _Sent __last… in __min_element() function
47 return std::__min_element<_Comp>(std::move(__first), std::move(__last), __comp, __proj); in __min_element()
58 …return std::__min_element<__comp_ref_type<_Compare> >(std::move(__first), std::move(__last), __com… in min_element()
H A Dranges_min_element.h49 namespace __min_element {
71 inline constexpr auto min_element = __min_element::__fn{};
H A Dmin.h44 return *std::__min_element<__comp_ref_type<_Compare> >(__t.begin(), __t.end(), __comp); in min()
H A Dsort.h274 _BidirectionalIterator __i = std::__min_element<_Compare>(__first, __last, __comp);