File indexing completed on 2026-05-03 08:13:20
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef _LIBCPP___CXX03___ALGORITHM_RANGES_INPLACE_MERGE_H
0010 #define _LIBCPP___CXX03___ALGORITHM_RANGES_INPLACE_MERGE_H
0011
0012 #include <__cxx03/__algorithm/inplace_merge.h>
0013 #include <__cxx03/__algorithm/iterator_operations.h>
0014 #include <__cxx03/__algorithm/make_projected.h>
0015 #include <__cxx03/__config>
0016 #include <__cxx03/__functional/identity.h>
0017 #include <__cxx03/__functional/invoke.h>
0018 #include <__cxx03/__functional/ranges_operations.h>
0019 #include <__cxx03/__iterator/concepts.h>
0020 #include <__cxx03/__iterator/iterator_traits.h>
0021 #include <__cxx03/__iterator/next.h>
0022 #include <__cxx03/__iterator/projected.h>
0023 #include <__cxx03/__iterator/sortable.h>
0024 #include <__cxx03/__ranges/access.h>
0025 #include <__cxx03/__ranges/concepts.h>
0026 #include <__cxx03/__ranges/dangling.h>
0027 #include <__cxx03/__utility/forward.h>
0028 #include <__cxx03/__utility/move.h>
0029
0030 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
0031 # pragma GCC system_header
0032 #endif
0033
0034 _LIBCPP_PUSH_MACROS
0035 #include <__cxx03/__undef_macros>
0036
0037 #if _LIBCPP_STD_VER >= 20
0038
0039 _LIBCPP_BEGIN_NAMESPACE_STD
0040
0041 namespace ranges {
0042 namespace __inplace_merge {
0043
0044 struct __fn {
0045 template <class _Iter, class _Sent, class _Comp, class _Proj>
0046 _LIBCPP_HIDE_FROM_ABI static constexpr auto
0047 __inplace_merge_impl(_Iter __first, _Iter __middle, _Sent __last, _Comp&& __comp, _Proj&& __proj) {
0048 auto __last_iter = ranges::next(__middle, __last);
0049 std::__inplace_merge<_RangeAlgPolicy>(
0050 std::move(__first), std::move(__middle), __last_iter, std::__make_projected(__comp, __proj));
0051 return __last_iter;
0052 }
0053
0054 template <bidirectional_iterator _Iter, sentinel_for<_Iter> _Sent, class _Comp = ranges::less, class _Proj = identity>
0055 requires sortable<_Iter, _Comp, _Proj>
0056 _LIBCPP_HIDE_FROM_ABI _Iter
0057 operator()(_Iter __first, _Iter __middle, _Sent __last, _Comp __comp = {}, _Proj __proj = {}) const {
0058 return __inplace_merge_impl(
0059 std::move(__first), std::move(__middle), std::move(__last), std::move(__comp), std::move(__proj));
0060 }
0061
0062 template <bidirectional_range _Range, class _Comp = ranges::less, class _Proj = identity>
0063 requires sortable<iterator_t<_Range>, _Comp, _Proj>
0064 _LIBCPP_HIDE_FROM_ABI borrowed_iterator_t<_Range>
0065 operator()(_Range&& __range, iterator_t<_Range> __middle, _Comp __comp = {}, _Proj __proj = {}) const {
0066 return __inplace_merge_impl(
0067 ranges::begin(__range), std::move(__middle), ranges::end(__range), std::move(__comp), std::move(__proj));
0068 }
0069 };
0070
0071 }
0072
0073 inline namespace __cpo {
0074 inline constexpr auto inplace_merge = __inplace_merge::__fn{};
0075 }
0076 }
0077
0078 _LIBCPP_END_NAMESPACE_STD
0079
0080 #endif
0081
0082 _LIBCPP_POP_MACROS
0083
0084 #endif