#ifndef _LIBCPP___RANGES_DROP_VIEW_H
#define _LIBCPP___RANGES_DROP_VIEW_H
#include <__algorithm/min.h>
#include <__assert>
#include <__concepts/constructible.h>
#include <__concepts/convertible_to.h>
#include <__config>
#include <__functional/bind_back.h>
#include <__fwd/span.h>
#include <__fwd/string_view.h>
#include <__iterator/concepts.h>
#include <__iterator/distance.h>
#include <__iterator/iterator_traits.h>
#include <__iterator/next.h>
#include <__ranges/access.h>
#include <__ranges/all.h>
#include <__ranges/concepts.h>
#include <__ranges/empty_view.h>
#include <__ranges/enable_borrowed_range.h>
#include <__ranges/iota_view.h>
#include <__ranges/non_propagating_cache.h>
#include <__ranges/range_adaptor.h>
#include <__ranges/repeat_view.h>
#include <__ranges/size.h>
#include <__ranges/subrange.h>
#include <__ranges/view_interface.h>
#include <__type_traits/conditional.h>
#include <__type_traits/decay.h>
#include <__type_traits/is_nothrow_constructible.h>
#include <__type_traits/make_unsigned.h>
#include <__type_traits/remove_cvref.h>
#include <__utility/auto_cast.h>
#include <__utility/forward.h>
#include <__utility/move.h>
#include <cstddef>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_PUSH_MACROS
#include <__undef_macros>
_LIBCPP_BEGIN_NAMESPACE_STD
#if _LIBCPP_STD_VER >= 20
namespace ranges {
template <view _View>
class drop_view : public view_interface<drop_view<_View>> { … };
template <class _Range>
drop_view(_Range&&, range_difference_t<_Range>) -> drop_view<views::all_t<_Range>>;
enable_borrowed_range;
namespace views {
namespace __drop {
__is_empty_view;
__is_empty_view;
__is_passthrough_specialization;
__is_passthrough_specialization;
__is_passthrough_specialization;
__is_passthrough_specialization;
__is_passthrough_specialization;
__is_subrange_specialization_with_store_size;
__is_subrange_specialization_with_store_size;
template <class _Tp>
struct __passthrough_type;
__passthrough_type<span<_Tp, _Extent>>;
__passthrough_type<basic_string_view<_CharT, _Traits>>;
__passthrough_type<iota_view<_Np, _Bound>>;
__passthrough_type<subrange<_Iter, _Sent, _Kind>>;
__passthrough_type_t;
struct __fn { … };
}
inline namespace __cpo {
inline constexpr auto drop = …;
}
}
}
#endif
_LIBCPP_END_NAMESPACE_STD
_LIBCPP_POP_MACROS
#endif