1 //===----------------------------------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef _LIBCPP___ALGORITHM_COPY_BACKWARD_H 10 #define _LIBCPP___ALGORITHM_COPY_BACKWARD_H 11 12 #include <__algorithm/copy.h> 13 #include <__algorithm/iterator_operations.h> 14 #include <__algorithm/ranges_copy.h> 15 #include <__algorithm/unwrap_iter.h> 16 #include <__concepts/same_as.h> 17 #include <__config> 18 #include <__iterator/iterator_traits.h> 19 #include <__iterator/reverse_iterator.h> 20 #include <__ranges/subrange.h> 21 #include <__utility/move.h> 22 #include <__utility/pair.h> 23 #include <type_traits> 24 25 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) 26 # pragma GCC system_header 27 #endif 28 29 _LIBCPP_BEGIN_NAMESPACE_STD 30 31 template <class _AlgPolicy, class _InputIterator, class _OutputIterator, 32 __enable_if_t<is_same<_AlgPolicy, _ClassicAlgPolicy>::value, int> = 0> 33 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_AFTER_CXX11 pair<_InputIterator, _OutputIterator> 34 __copy_backward(_InputIterator __first, _InputIterator __last, _OutputIterator __result) { 35 auto __ret = std::__copy( 36 __unconstrained_reverse_iterator<_InputIterator>(__last), 37 __unconstrained_reverse_iterator<_InputIterator>(__first), 38 __unconstrained_reverse_iterator<_OutputIterator>(__result)); 39 return pair<_InputIterator, _OutputIterator>(__ret.first.base(), __ret.second.base()); 40 } 41 42 #if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES) 43 template <class _AlgPolicy, class _Iter1, class _Sent1, class _Iter2, 44 __enable_if_t<is_same<_AlgPolicy, _RangeAlgPolicy>::value, int> = 0> 45 _LIBCPP_HIDE_FROM_ABI constexpr pair<_Iter1, _Iter2> __copy_backward(_Iter1 __first, _Sent1 __last, _Iter2 __result) { 46 auto __last_iter = _IterOps<_AlgPolicy>::next(__first, std::move(__last)); 47 auto __reverse_range = std::__reverse_range(std::ranges::subrange(std::move(__first), __last_iter)); 48 auto __ret = ranges::copy(std::move(__reverse_range), std::make_reverse_iterator(__result)); 49 return std::make_pair(__last_iter, __ret.out.base()); 50 } 51 #endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES) 52 53 template <class _BidirectionalIterator1, class _BidirectionalIterator2> 54 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_AFTER_CXX17 _BidirectionalIterator2 55 copy_backward(_BidirectionalIterator1 __first, _BidirectionalIterator1 __last, _BidirectionalIterator2 __result) { 56 return std::__copy_backward<_ClassicAlgPolicy>(__first, __last, __result).second; 57 } 58 59 _LIBCPP_END_NAMESPACE_STD 60 61 #endif // _LIBCPP___ALGORITHM_COPY_BACKWARD_H 62