xref: /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ranges_copy_backward.h (revision b3edf4467982447620505a28fc82e38a414c07dc)
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_RANGES_COPY_BACKWARD_H
10 #define _LIBCPP___ALGORITHM_RANGES_COPY_BACKWARD_H
11 
12 #include <__algorithm/copy_backward.h>
13 #include <__algorithm/in_out_result.h>
14 #include <__algorithm/iterator_operations.h>
15 #include <__config>
16 #include <__iterator/concepts.h>
17 #include <__ranges/access.h>
18 #include <__ranges/concepts.h>
19 #include <__ranges/dangling.h>
20 #include <__utility/move.h>
21 
22 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
23 #  pragma GCC system_header
24 #endif
25 
26 _LIBCPP_PUSH_MACROS
27 #include <__undef_macros>
28 
29 #if _LIBCPP_STD_VER >= 20
30 
31 _LIBCPP_BEGIN_NAMESPACE_STD
32 
33 namespace ranges {
34 
35 template <class _Ip, class _Op>
36 using copy_backward_result = in_out_result<_Ip, _Op>;
37 
38 namespace __copy_backward {
39 struct __fn {
40   template <bidirectional_iterator _InIter1, sentinel_for<_InIter1> _Sent1, bidirectional_iterator _InIter2>
41     requires indirectly_copyable<_InIter1, _InIter2>
42   _LIBCPP_HIDE_FROM_ABI constexpr copy_backward_result<_InIter1, _InIter2>
43   operator()(_InIter1 __first, _Sent1 __last, _InIter2 __result) const {
44     auto __ret = std::__copy_backward<_RangeAlgPolicy>(std::move(__first), std::move(__last), std::move(__result));
45     return {std::move(__ret.first), std::move(__ret.second)};
46   }
47 
48   template <bidirectional_range _Range, bidirectional_iterator _Iter>
49     requires indirectly_copyable<iterator_t<_Range>, _Iter>
50   _LIBCPP_HIDE_FROM_ABI constexpr copy_backward_result<borrowed_iterator_t<_Range>, _Iter>
51   operator()(_Range&& __r, _Iter __result) const {
52     auto __ret = std::__copy_backward<_RangeAlgPolicy>(ranges::begin(__r), ranges::end(__r), std::move(__result));
53     return {std::move(__ret.first), std::move(__ret.second)};
54   }
55 };
56 } // namespace __copy_backward
57 
58 inline namespace __cpo {
59 inline constexpr auto copy_backward = __copy_backward::__fn{};
60 } // namespace __cpo
61 } // namespace ranges
62 
63 _LIBCPP_END_NAMESPACE_STD
64 
65 #endif // _LIBCPP_STD_VER >= 20
66 
67 _LIBCPP_POP_MACROS
68 
69 #endif // _LIBCPP___ALGORITHM_RANGES_COPY_BACKWARD_H
70