1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add index_tuple/*

This commit is contained in:
bolero-MURAKAMI 2012-04-04 22:59:02 +09:00
parent c6bd230ee4
commit 84956034ad
10 changed files with 259 additions and 205 deletions

View file

@ -0,0 +1,19 @@
#ifndef SPROUT_INDEX_TUPLE_PACK_INDEXES_HPP
#define SPROUT_INDEX_TUPLE_PACK_INDEXES_HPP
#include <sprout/config.hpp>
#include <sprout/index_tuple/detail/make_indexes_helper.hpp>
namespace sprout {
//
// pack_indexes
//
template<typename... Args>
struct pack_indexes
: public sprout::detail::make_indexes_helper<
sprout::index_range<0, sizeof...(Args)>
>
{};
} // namespace sprout
#endif // #ifndef SPROUT_INDEX_TUPLE_PACK_INDEXES_HPP