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