Home
last modified time | relevance | path

Searched refs:__move_impl (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libcxx/include/__algorithm/
H A Dmove.h32 pair<_InIter, _OutIter> __move_impl(_InIter __first, _Sent __last, _OutIter __result) { in __move_impl() function
47 pair<_InType*, _OutType*> __move_impl(_InType* __first, _InType* __last, _OutType* __result) { in __move_impl() function
54 return std::__move_impl<_AlgPolicy, _InType*, _InType*, _OutType*>(__first, __last, __result); in __move_impl()
80 __move_impl(reverse_iterator<_InIter> __first,
87 std::__move_impl<_AlgPolicy>(__last_base, __first_base, __result_first);
97 auto __ret = std::__move_impl<_AlgPolicy>(
108 return std::__move_impl<_AlgPolicy>(std::move(__first), std::move(__last), std::move(__result));
H A Dranges_move.h41 move_result<_InIter, _OutIter> __move_impl(_InIter __first, _Sent __last, _OutIter __result) { in __move_impl() function
50 return __move_impl(std::move(__first), std::move(__last), std::move(__result)); in operator()
57 return __move_impl(ranges::begin(__range), ranges::end(__range), std::move(__result)); in operator()