#ifndef _LIBCPP___RANGES_DATA_H
#define _LIBCPP___RANGES_DATA_H
#include <__concepts/class_or_enum.h>
#include <__config>
#include <__iterator/concepts.h>
#include <__iterator/iterator_traits.h>
#include <__memory/pointer_traits.h>
#include <__ranges/access.h>
#include <__type_traits/decay.h>
#include <__type_traits/is_object.h>
#include <__type_traits/is_pointer.h>
#include <__type_traits/is_reference.h>
#include <__type_traits/remove_pointer.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 __data {
__ptr_to_object;
__member_data;
__ranges_begin_invocable;
struct __fn { … };
}
inline namespace __cpo {
inline constexpr auto data = …;
}
}
namespace ranges {
namespace __cdata {
struct __fn { … };
}
inline namespace __cpo {
inline constexpr auto cdata = …;
}
}
#endif
_LIBCPP_END_NAMESPACE_STD
#endif