2 //===----------------------------------------------------------------------===//
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP___RANGES_RBEGIN_H
11 #define _LIBCPP___RANGES_RBEGIN_H
13 #include <__concepts/class_or_enum.h>
14 #include <__concepts/same_as.h>
16 #include <__iterator/concepts.h>
17 #include <__iterator/readable_traits.h>
18 #include <__iterator/reverse_iterator.h>
19 #include <__ranges/access.h>
20 #include <__type_traits/decay.h>
21 #include <__type_traits/is_reference.h>
22 #include <__type_traits/remove_cvref.h>
23 #include <__type_traits/remove_reference.h>
24 #include <__utility/auto_cast.h>
26 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
27 # pragma GCC system_header
30 _LIBCPP_BEGIN_NAMESPACE_STD
32 #if _LIBCPP_STD_VER >= 20
34 // [ranges.access.rbegin]
39 concept __member_rbegin
= __can_borrow
<_Tp
> && requires(_Tp
&& __t
) {
40 { _LIBCPP_AUTO_CAST(__t
.rbegin()) } -> input_or_output_iterator
;
43 void rbegin() = delete;
46 concept __unqualified_rbegin
=
47 !__member_rbegin
<_Tp
> && __can_borrow
<_Tp
> && __class_or_enum
<remove_cvref_t
<_Tp
>> && requires(_Tp
&& __t
) {
48 { _LIBCPP_AUTO_CAST(rbegin(__t
)) } -> input_or_output_iterator
;
52 concept __can_reverse
=
53 __can_borrow
<_Tp
> && !__member_rbegin
<_Tp
> && !__unqualified_rbegin
<_Tp
> && requires(_Tp
&& __t
) {
54 { ranges::begin(__t
) } -> same_as
<decltype(ranges::end(__t
))>;
55 { ranges::begin(__t
) } -> bidirectional_iterator
;
60 requires __member_rbegin
<_Tp
>
61 [[nodiscard
]] _LIBCPP_HIDE_FROM_ABI
constexpr auto operator()(_Tp
&& __t
) const
62 noexcept(noexcept(_LIBCPP_AUTO_CAST(__t
.rbegin()))) {
63 return _LIBCPP_AUTO_CAST(__t
.rbegin());
67 requires __unqualified_rbegin
<_Tp
>
68 [[nodiscard
]] _LIBCPP_HIDE_FROM_ABI
constexpr auto operator()(_Tp
&& __t
) const
69 noexcept(noexcept(_LIBCPP_AUTO_CAST(rbegin(__t
)))) {
70 return _LIBCPP_AUTO_CAST(rbegin(__t
));
74 requires __can_reverse
<_Tp
>
75 [[nodiscard
]] _LIBCPP_HIDE_FROM_ABI
constexpr auto operator()(_Tp
&& __t
) const noexcept(noexcept(ranges::end(__t
))) {
76 return std::make_reverse_iterator(ranges::end(__t
));
79 void operator()(auto&&) const = delete;
81 } // namespace __rbegin
83 inline namespace __cpo
{
84 inline constexpr auto rbegin
= __rbegin::__fn
{};
88 // [range.access.crbegin]
94 requires is_lvalue_reference_v
<_Tp
&&>
95 [[nodiscard
]] _LIBCPP_HIDE_FROM_ABI
constexpr auto operator()(_Tp
&& __t
) const
96 noexcept(noexcept(ranges::rbegin(static_cast<const remove_reference_t
<_Tp
>&>(__t
))))
97 -> decltype(ranges::rbegin(static_cast<const remove_reference_t
<_Tp
>&>(__t
))) {
98 return ranges::rbegin(static_cast<const remove_reference_t
<_Tp
>&>(__t
));
102 requires is_rvalue_reference_v
<_Tp
&&>
103 [[nodiscard
]] _LIBCPP_HIDE_FROM_ABI
constexpr auto operator()(_Tp
&& __t
) const
104 noexcept(noexcept(ranges::rbegin(static_cast<const _Tp
&&>(__t
))))
105 -> decltype(ranges::rbegin(static_cast<const _Tp
&&>(__t
))) {
106 return ranges::rbegin(static_cast<const _Tp
&&>(__t
));
109 } // namespace __crbegin
111 inline namespace __cpo
{
112 inline constexpr auto crbegin
= __crbegin::__fn
{};
114 } // namespace ranges
116 #endif // _LIBCPP_STD_VER >= 20
118 _LIBCPP_END_NAMESPACE_STD
120 #endif // _LIBCPP___RANGES_RBEGIN_H