#ifndef _LIBCPP___UTILITY_INTEGER_SEQUENCE_H
#define _LIBCPP___UTILITY_INTEGER_SEQUENCE_H
#include <__config>
#include <__type_traits/is_integral.h>
#include <cstddef>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
template <size_t...>
struct __tuple_indices;
template <class _IdxType, _IdxType... _Values>
struct __integer_sequence { … };
#if __has_builtin(__make_integer_seq)
__make_indices_imp;
#elif __has_builtin(__integer_pack)
template <size_t _Ep, size_t _Sp>
using __make_indices_imp =
typename __integer_sequence<size_t, __integer_pack(_Ep - _Sp)...>::template __to_tuple_indices<_Sp>;
#else
# error "No known way to get an integer pack from the compiler"
#endif
#if _LIBCPP_STD_VER >= 14
template <class _Tp, _Tp... _Ip>
struct _LIBCPP_TEMPLATE_VIS integer_sequence { … };
index_sequence;
# if __has_builtin(__make_integer_seq)
make_integer_sequence;
# elif __has_builtin(__integer_pack)
template <class _Tp, _Tp _SequenceSize>
using make_integer_sequence _LIBCPP_NODEBUG = integer_sequence<_Tp, __integer_pack(_SequenceSize)...>;
# else
# error "No known way to get an integer pack from the compiler"
# endif
make_index_sequence;
index_sequence_for;
# if _LIBCPP_STD_VER >= 20
template <size_t... _Index, class _Function>
_LIBCPP_HIDE_FROM_ABI constexpr void __for_each_index_sequence(index_sequence<_Index...>, _Function __func) { … }
# endif
#endif
_LIBCPP_END_NAMESPACE_STD
#endif