Sprout/sprout/index_tuple/index_n.hpp

33 lines
861 B
C++
Raw Normal View History

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