#ifndef _LIBCPP___RANGES_SIZE_H
#define _LIBCPP___RANGES_SIZE_H
#include <__concepts/arithmetic.h>
#include <__concepts/class_or_enum.h>
#include <__config>
#include <__iterator/concepts.h>
#include <__iterator/iterator_traits.h>
#include <__ranges/access.h>
#include <__type_traits/decay.h>
#include <__type_traits/make_signed.h>
#include <__type_traits/make_unsigned.h>
#include <__type_traits/remove_cvref.h>
#include <__utility/auto_cast.h>
#include <__utility/declval.h>
#include <cstddef>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
#if _LIBCPP_STD_VER >= 20
namespace ranges {
disable_sized_range;
}
namespace ranges {
namespace __size {
void size() = delete;
__size_enabled;
__member_size;
__unqualified_size;
__difference;
struct __fn { … };
}
inline namespace __cpo {
inline constexpr auto size = …;
}
}
namespace ranges {
namespace __ssize {
struct __fn { … };
}
inline namespace __cpo {
inline constexpr auto ssize = …;
}
}
#endif
_LIBCPP_END_NAMESPACE_STD
#endif