Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-03 08:13:19

0001 //===----------------------------------------------------------------------===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 
0009 #ifndef _LIBCPP___CXX03___ALGORITHM_RANGES_EQUAL_RANGE_H
0010 #define _LIBCPP___CXX03___ALGORITHM_RANGES_EQUAL_RANGE_H
0011 
0012 #include <__cxx03/__algorithm/equal_range.h>
0013 #include <__cxx03/__algorithm/iterator_operations.h>
0014 #include <__cxx03/__config>
0015 #include <__cxx03/__functional/identity.h>
0016 #include <__cxx03/__functional/invoke.h>
0017 #include <__cxx03/__functional/ranges_operations.h>
0018 #include <__cxx03/__iterator/concepts.h>
0019 #include <__cxx03/__iterator/iterator_traits.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/__ranges/subrange.h>
0025 #include <__cxx03/__utility/forward.h>
0026 #include <__cxx03/__utility/move.h>
0027 #include <__cxx03/__utility/pair.h>
0028 
0029 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
0030 #  pragma GCC system_header
0031 #endif
0032 
0033 _LIBCPP_PUSH_MACROS
0034 #include <__cxx03/__undef_macros>
0035 
0036 #if _LIBCPP_STD_VER >= 20
0037 
0038 _LIBCPP_BEGIN_NAMESPACE_STD
0039 
0040 namespace ranges {
0041 namespace __equal_range {
0042 
0043 struct __fn {
0044   template <forward_iterator _Iter,
0045             sentinel_for<_Iter> _Sent,
0046             class _Tp,
0047             class _Proj                                                           = identity,
0048             indirect_strict_weak_order<const _Tp*, projected<_Iter, _Proj>> _Comp = ranges::less>
0049   [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr subrange<_Iter>
0050   operator()(_Iter __first, _Sent __last, const _Tp& __value, _Comp __comp = {}, _Proj __proj = {}) const {
0051     auto __ret = std::__equal_range<_RangeAlgPolicy>(std::move(__first), std::move(__last), __value, __comp, __proj);
0052     return {std::move(__ret.first), std::move(__ret.second)};
0053   }
0054 
0055   template <forward_range _Range,
0056             class _Tp,
0057             class _Proj                                                                        = identity,
0058             indirect_strict_weak_order<const _Tp*, projected<iterator_t<_Range>, _Proj>> _Comp = ranges::less>
0059   [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr borrowed_subrange_t<_Range>
0060   operator()(_Range&& __range, const _Tp& __value, _Comp __comp = {}, _Proj __proj = {}) const {
0061     auto __ret =
0062         std::__equal_range<_RangeAlgPolicy>(ranges::begin(__range), ranges::end(__range), __value, __comp, __proj);
0063     return {std::move(__ret.first), std::move(__ret.second)};
0064   }
0065 };
0066 
0067 } // namespace __equal_range
0068 
0069 inline namespace __cpo {
0070 inline constexpr auto equal_range = __equal_range::__fn{};
0071 } // namespace __cpo
0072 } // namespace ranges
0073 
0074 _LIBCPP_END_NAMESPACE_STD
0075 
0076 #endif // _LIBCPP_STD_VER >= 20
0077 
0078 _LIBCPP_POP_MACROS
0079 
0080 #endif // _LIBCPP___CXX03___ALGORITHM_RANGES_EQUAL_RANGE_H