ranges_copy.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. #ifndef _LIBCPP___ALGORITHM_RANGES_COPY_H
  9. #define _LIBCPP___ALGORITHM_RANGES_COPY_H
  10. #include <__algorithm/copy.h>
  11. #include <__algorithm/in_out_result.h>
  12. #include <__config>
  13. #include <__functional/identity.h>
  14. #include <__iterator/concepts.h>
  15. #include <__ranges/access.h>
  16. #include <__ranges/concepts.h>
  17. #include <__ranges/dangling.h>
  18. #include <__utility/move.h>
  19. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  20. # pragma GCC system_header
  21. #endif
  22. #if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES)
  23. _LIBCPP_BEGIN_NAMESPACE_STD
  24. namespace ranges {
  25. template <class _InIter, class _OutIter>
  26. using copy_result = in_out_result<_InIter, _OutIter>;
  27. namespace __copy {
  28. struct __fn {
  29. template <input_iterator _InIter, sentinel_for<_InIter> _Sent, weakly_incrementable _OutIter>
  30. requires indirectly_copyable<_InIter, _OutIter>
  31. _LIBCPP_HIDE_FROM_ABI constexpr
  32. copy_result<_InIter, _OutIter> operator()(_InIter __first, _Sent __last, _OutIter __result) const {
  33. auto __ret = std::__copy(std::move(__first), std::move(__last), std::move(__result));
  34. return {std::move(__ret.first), std::move(__ret.second)};
  35. }
  36. template <input_range _Range, weakly_incrementable _OutIter>
  37. requires indirectly_copyable<iterator_t<_Range>, _OutIter>
  38. _LIBCPP_HIDE_FROM_ABI constexpr
  39. copy_result<borrowed_iterator_t<_Range>, _OutIter> operator()(_Range&& __r, _OutIter __result) const {
  40. auto __ret = std::__copy(ranges::begin(__r), ranges::end(__r), std::move(__result));
  41. return {std::move(__ret.first), std::move(__ret.second)};
  42. }
  43. };
  44. } // namespace __copy
  45. inline namespace __cpo {
  46. inline constexpr auto copy = __copy::__fn{};
  47. } // namespace __cpo
  48. } // namespace ranges
  49. _LIBCPP_END_NAMESPACE_STD
  50. #endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES)
  51. #endif // _LIBCPP___ALGORITHM_RANGES_COPY_H