Sprout/sprout/index_tuple/index_tuple.hpp

62 lines
1.8 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
2012-04-04 13:59:02 +00:00
#ifndef SPROUT_INDEX_TUPLE_INDEX_TUPLE_HPP
#define SPROUT_INDEX_TUPLE_INDEX_TUPLE_HPP
#include <sprout/config.hpp>
#include <sprout/index_tuple/index_t.hpp>
#include <sprout/index_tuple/integer_sequence.hpp>
2012-04-04 13:59:02 +00:00
namespace sprout {
//
// index_tuple
// uindex_tuple
2012-04-04 13:59:02 +00:00
//
#if SPROUT_USE_TEMPLATE_ALIASES
template<sprout::index_t... Indexes>
using index_tuple = sprout::integer_sequence<sprout::index_t, Indexes...>;
template<sprout::uindex_t... Indexes>
using uindex_tuple = sprout::integer_sequence<sprout::uindex_t, Indexes...>;
#else // #if SPROUT_USE_TEMPLATE_ALIASES
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_sequence<sprout::index_t, Indexes...>
2013-03-31 04:39:26 +00:00
{
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...>
{};
public:
static SPROUT_CONSTEXPR type make() SPROUT_NOEXCEPT {
return type();
}
2013-03-31 04:39:26 +00:00
};
template<sprout::uindex_t... Indexes>
struct uindex_tuple
: public sprout::integer_sequence<sprout::uindex_t, Indexes...>
2013-03-31 04:39:26 +00:00
{
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...>
{};
public:
static SPROUT_CONSTEXPR type make() SPROUT_NOEXCEPT {
return type();
}
2012-04-04 13:59:02 +00:00
};
#endif // #if SPROUT_USE_TEMPLATE_ALIASES
2012-04-04 13:59:02 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_TUPLE_HPP