#ifndef _LIBCPP___RANGES_REND_H
#define _LIBCPP___RANGES_REND_H
#include <__concepts/class_or_enum.h>
#include <__concepts/same_as.h>
#include <__config>
#include <__iterator/concepts.h>
#include <__iterator/readable_traits.h>
#include <__iterator/reverse_iterator.h>
#include <__ranges/access.h>
#include <__ranges/rbegin.h>
#include <__type_traits/decay.h>
#include <__type_traits/is_reference.h>
#include <__type_traits/remove_cvref.h>
#include <__type_traits/remove_reference.h>
#include <__utility/auto_cast.h>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
#if _LIBCPP_STD_VER >= 20
namespace ranges {
namespace __rend {
__member_rend;
void rend() = delete;
__unqualified_rend;
__can_reverse;
class __fn { … };
}
inline namespace __cpo {
inline constexpr auto rend = …;
}
}
namespace ranges {
namespace __crend {
struct __fn { … };
}
inline namespace __cpo {
inline constexpr auto crend = …;
}
}
#endif
_LIBCPP_END_NAMESPACE_STD
#endif