Sprout/sprout/index_tuple/index_tuple.hpp

45 lines
960 B
C++
Raw Normal View History

2012-04-04 13:59:02 +00:00
#ifndef SPROUT_INDEX_TUPLE_INDEX_TUPLE_HPP
#define SPROUT_INDEX_TUPLE_INDEX_TUPLE_HPP
#include <cstddef>
#include <sprout/config.hpp>
2013-03-31 04:39:26 +00:00
#include <sprout/index_tuple/integer_seq.hpp>
2012-04-04 13:59:02 +00:00
namespace sprout {
//
// index_t
// index_tuple
//
2013-03-31 04:39:26 +00:00
typedef std::ptrdiff_t index_t;
2012-04-04 13:59:02 +00:00
template<sprout::index_t... Indexes>
2013-03-31 04:39:26 +00:00
struct index_tuple
: public sprout::integer_seq<sprout::index_t, Indexes...>
{
2012-04-04 13:59:02 +00:00
public:
typedef index_tuple type;
2013-03-31 04:39:26 +00:00
template<sprout::index_t... J>
struct rebind
: public index_tuple<J...>
{};
};
//
// uindex_t
// uindex_tuple
//
typedef std::size_t uindex_t;
template<sprout::uindex_t... Indexes>
struct uindex_tuple
: public sprout::integer_seq<sprout::uindex_t, Indexes...>
{
2013-01-25 06:14:29 +00:00
public:
2013-03-31 04:39:26 +00:00
typedef uindex_tuple type;
template<sprout::uindex_t... J>
struct rebind
: public uindex_tuple<J...>
{};
2012-04-04 13:59:02 +00:00
};
} // namespace sprout
#endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_TUPLE_HPP