mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
18 lines
422 B
C++
18 lines
422 B
C++
|
#ifndef SPROUT_INDEX_TUPLE_INDEX_SEQUENCE_FOR_HPP
|
||
|
#define SPROUT_INDEX_TUPLE_INDEX_SEQUENCE_FOR_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/index_tuple/index_pack.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
//
|
||
|
// index_sequence_for
|
||
|
//
|
||
|
template<typename... Ts>
|
||
|
struct index_sequence_for
|
||
|
: public sprout::uindex_pack<Ts...>
|
||
|
{};
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_SEQUENCE_FOR_HPP
|