mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
#ifndef SPROUT_INDEX_TUPLE_INDEX_PACK_HPP
|
|
#define SPROUT_INDEX_TUPLE_INDEX_PACK_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/index_tuple/index_tuple.hpp>
|
|
#include <sprout/index_tuple/integer_pack.hpp>
|
|
#include <sprout/index_tuple/enable_make_indexes.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// index_pack
|
|
// uindex_pack
|
|
//
|
|
#if SPROUT_USE_TEMPLATE_ALIASES
|
|
template<typename... Ts>
|
|
using index_pack = sprout::integer_pack<sprout::index_t, Ts...>;
|
|
|
|
template<typename... Ts>
|
|
using uindex_pack = sprout::integer_pack<sprout::uindex_t, Ts...>;
|
|
#else // #if SPROUT_USE_TEMPLATE_ALIASES
|
|
template<typename... Ts>
|
|
struct index_pack
|
|
: public sprout::enable_make_indexes<
|
|
typename sprout::integer_pack<sprout::index_t, Ts...>::type
|
|
::template transfer<sprout::index_tuple<> >
|
|
>
|
|
{};
|
|
|
|
template<typename... Ts>
|
|
struct uindex_pack
|
|
: public sprout::enable_make_indexes<
|
|
typename sprout::integer_pack<sprout::uindex_t, Ts...>::type
|
|
::template transfer<sprout::uindex_tuple<> >
|
|
>
|
|
{};
|
|
#endif // #if SPROUT_USE_TEMPLATE_ALIASES
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_PACK_HPP
|