2012-04-04 13:59:02 +00:00
|
|
|
#ifndef SPROUT_INDEX_TUPLE_INDEX_N_HPP
|
|
|
|
#define SPROUT_INDEX_TUPLE_INDEX_N_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <sprout/config.hpp>
|
2013-03-31 04:39:26 +00:00
|
|
|
#include <sprout/index_tuple/integer_n.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/enable_make_indexes.hpp>
|
2012-04-04 13:59:02 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// index_n
|
|
|
|
//
|
|
|
|
template<sprout::index_t I, std::size_t N>
|
|
|
|
struct index_n
|
2013-04-06 04:06:51 +00:00
|
|
|
: public sprout::enable_make_indexes<
|
2013-03-31 04:39:26 +00:00
|
|
|
typename sprout::integer_n<sprout::index_t, I, N>::type
|
2013-04-06 04:06:51 +00:00
|
|
|
::template transfer<sprout::index_tuple<> >
|
2013-03-31 04:39:26 +00:00
|
|
|
>
|
|
|
|
{};
|
|
|
|
//
|
|
|
|
// uindex_n
|
|
|
|
//
|
|
|
|
template<sprout::uindex_t I, std::size_t N>
|
|
|
|
struct uindex_n
|
2013-04-06 04:06:51 +00:00
|
|
|
: public sprout::enable_make_indexes<
|
2013-03-31 04:39:26 +00:00
|
|
|
typename sprout::integer_n<sprout::uindex_t, I, N>::type
|
2013-04-06 04:06:51 +00:00
|
|
|
::template transfer<sprout::uindex_tuple<> >
|
2012-04-04 13:59:02 +00:00
|
|
|
>
|
|
|
|
{};
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_N_HPP
|