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-05-10 10:52:39 +00:00
|
|
|
#include <sprout/index_tuple/index_tuple.hpp>
|
2013-03-31 04:39:26 +00:00
|
|
|
#include <sprout/index_tuple/integer_n.hpp>
|
2012-04-04 13:59:02 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// index_n
|
2013-05-10 12:53:53 +00:00
|
|
|
// uindex_n
|
2012-04-04 13:59:02 +00:00
|
|
|
//
|
2013-05-10 12:53:53 +00:00
|
|
|
#if SPROUT_USE_TEMPLATE_ALIASES
|
|
|
|
template<sprout::index_t I, std::size_t N>
|
|
|
|
using index_n = sprout::integer_n<sprout::index_t, I, N>;
|
|
|
|
|
|
|
|
template<sprout::uindex_t I, std::size_t N>
|
|
|
|
using uindex_n = sprout::integer_n<sprout::uindex_t, I, N>;
|
|
|
|
#else // #if SPROUT_USE_TEMPLATE_ALIASES
|
2012-04-04 13:59:02 +00:00
|
|
|
template<sprout::index_t I, std::size_t N>
|
|
|
|
struct index_n
|
2013-05-12 02:05:31 +00:00
|
|
|
: public typename sprout::integer_n<sprout::index_t, I, N>::type
|
|
|
|
::template transfer<sprout::index_tuple<> >
|
2013-03-31 04:39:26 +00:00
|
|
|
{};
|
2013-05-10 12:53:53 +00:00
|
|
|
|
2013-03-31 04:39:26 +00:00
|
|
|
template<sprout::uindex_t I, std::size_t N>
|
|
|
|
struct uindex_n
|
2013-05-12 02:05:31 +00:00
|
|
|
: public typename sprout::integer_n<sprout::uindex_t, I, N>::type
|
|
|
|
::template transfer<sprout::uindex_tuple<> >
|
2012-04-04 13:59:02 +00:00
|
|
|
{};
|
2013-05-10 12:53:53 +00:00
|
|
|
#endif // #if SPROUT_USE_TEMPLATE_ALIASES
|
2012-04-04 13:59:02 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_N_HPP
|