Searched refs:__is_sorted_until_impl (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/libcxx/include/__algorithm/ |
| H A D | ranges_is_sorted_until.h | 35 _Iter __is_sorted_until_impl(_Iter __first, _Sent __last, _Comp& __comp, _Proj& __proj) { in __is_sorted_until_impl() function 54 return ranges::__is_sorted_until_impl(std::move(__first), std::move(__last), __comp, __proj); 62 …return ranges::__is_sorted_until_impl(ranges::begin(__range), ranges::end(__range), __comp, __proj…
|
| H A D | ranges_is_sorted.h | 38 return ranges::__is_sorted_until_impl(std::move(__first), __last, __comp, __proj) == __last; 47 return ranges::__is_sorted_until_impl(ranges::begin(__range), __last, __comp, __proj) == __last;
|