//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. // //===----------------------------------------------------------------------===// #ifndef _LIBCUDACXX___TUPLE_TUPLE_ELEMENT_H #define _LIBCUDACXX___TUPLE_TUPLE_ELEMENT_H #ifndef __cuda_std__ # include <__config> #endif // __cuda_std__ #include "../__tuple_dir/tuple_indices.h" #include "../__tuple_dir/tuple_types.h" #include "../__type_traits/add_const.h" #include "../__type_traits/add_cv.h" #include "../__type_traits/add_volatile.h" #include "../cstddef" #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) # pragma GCC system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) # pragma clang system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) # pragma system_header #endif // no system header _LIBCUDACXX_BEGIN_NAMESPACE_STD template struct _LIBCUDACXX_TEMPLATE_VIS tuple_element; template using __tuple_element_t _LIBCUDACXX_NODEBUG_TYPE = typename tuple_element<_Ip, _Tp...>::type; template struct _LIBCUDACXX_TEMPLATE_VIS tuple_element<_Ip, const _Tp> { typedef _LIBCUDACXX_NODEBUG_TYPE typename add_const<__tuple_element_t<_Ip, _Tp>>::type type; }; template struct _LIBCUDACXX_TEMPLATE_VIS tuple_element<_Ip, volatile _Tp> { typedef _LIBCUDACXX_NODEBUG_TYPE typename add_volatile<__tuple_element_t<_Ip, _Tp>>::type type; }; template struct _LIBCUDACXX_TEMPLATE_VIS tuple_element<_Ip, const volatile _Tp> { typedef _LIBCUDACXX_NODEBUG_TYPE typename add_cv<__tuple_element_t<_Ip, _Tp>>::type type; }; #ifdef _LIBCUDACXX_COMPILER_MSVC namespace __indexer_detail { template struct _nth_of; template struct _nth_of<0, _Head, _Tail...> { using type = _Head; }; template struct _nth_of<_Idx, _Head, _Tail...> { using type = typename _nth_of<_Idx - 1, _Tail...>::type; }; template struct nth_of { static_assert(_Idx < sizeof...(_Types), ""); using _impl = _nth_of<_Idx, _Types...>; using type = typename _impl::type; }; } // namespace __indexer_detail template using __type_pack_element _LIBCUDACXX_NODEBUG_TYPE = typename __indexer_detail::nth_of<_Idx, _Types...>::type; #elif !__has_builtin(__type_pack_element) namespace __indexer_detail { template struct __indexed { using type _LIBCUDACXX_NODEBUG_TYPE = _Tp; }; template struct __indexer; template struct __indexer<__tuple_types<_Types...>, __tuple_indices<_Idx...>> : __indexed<_Idx, _Types>... {}; template _LIBCUDACXX_INLINE_VISIBILITY __indexed<_Idx, _Tp> __at_index(__indexed<_Idx, _Tp> const&); } // namespace __indexer_detail template using __type_pack_element _LIBCUDACXX_NODEBUG_TYPE = typename decltype(__indexer_detail::__at_index<_Idx>(__indexer_detail::__indexer< __tuple_types<_Types...>, __make_tuple_indices_t>{}))::type; #endif template struct _LIBCUDACXX_TEMPLATE_VIS tuple_element<_Ip, __tuple_types<_Types...> > { static_assert(_Ip < sizeof...(_Types), "tuple_element index out of range"); typedef _LIBCUDACXX_NODEBUG_TYPE __type_pack_element<_Ip, _Types...> type; }; #if _LIBCUDACXX_STD_VER > 11 template using tuple_element_t _LIBCUDACXX_NODEBUG_TYPE = typename tuple_element<_Ip, _Tp...>::type; #endif _LIBCUDACXX_END_NAMESPACE_STD #endif // _LIBCUDACXX___TUPLE_TUPLE_ELEMENT_H