#ifndef SPROUT_INDEX_TUPLE_INDEX_N_HPP #define SPROUT_INDEX_TUPLE_INDEX_N_HPP #include #include #include #include namespace sprout { // // index_n // uindex_n // #if SPROUT_USE_TEMPLATE_ALIASES template using index_n = sprout::integer_n; template using uindex_n = sprout::integer_n; #else // #if SPROUT_USE_TEMPLATE_ALIASES template struct index_n : public typename sprout::integer_n::type ::template transfer > {}; template struct uindex_n : public typename sprout::integer_n::type ::template transfer > {}; #endif // #if SPROUT_USE_TEMPLATE_ALIASES } // namespace sprout #endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_N_HPP