2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2013-05-10 10:52:39 +00:00
|
|
|
#ifndef SPROUT_INDEX_TUPLE_MAKE_INTEGER_SEQUENCE_HPP
|
|
|
|
#define SPROUT_INDEX_TUPLE_MAKE_INTEGER_SEQUENCE_HPP
|
2013-03-31 04:39:26 +00:00
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/index_tuple/integer_range.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
2013-05-10 10:52:39 +00:00
|
|
|
// make_integer_sequence
|
2013-03-31 04:39:26 +00:00
|
|
|
//
|
2014-03-07 10:49:30 +00:00
|
|
|
#if SPROUT_USE_TEMPLATE_ALIASES && !defined(SPROUT_WORKAROUND_NO_TEMPLATE_ARGUMENT_DEDUCTION_WITH_ALIASES)
|
2013-05-12 02:05:31 +00:00
|
|
|
template<typename T, T N>
|
|
|
|
using make_integer_sequence = sprout::integer_range<T, 0, N>;
|
2014-03-07 10:49:30 +00:00
|
|
|
#else // #if SPROUT_USE_TEMPLATE_ALIASES && !defined(SPROUT_WORKAROUND_NO_TEMPLATE_ARGUMENT_DEDUCTION_WITH_ALIASES)
|
2013-03-31 04:39:26 +00:00
|
|
|
template<typename T, T N>
|
2013-05-10 10:52:39 +00:00
|
|
|
struct make_integer_sequence
|
2013-05-12 02:05:31 +00:00
|
|
|
: public sprout::integer_range<T, 0, N>
|
2013-03-31 04:39:26 +00:00
|
|
|
{};
|
2014-03-07 10:49:30 +00:00
|
|
|
#endif // #if SPROUT_USE_TEMPLATE_ALIASES && !defined(SPROUT_WORKAROUND_NO_TEMPLATE_ARGUMENT_DEDUCTION_WITH_ALIASES)
|
2013-03-31 04:39:26 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
2013-05-10 10:52:39 +00:00
|
|
|
#endif // #ifndef SPROUT_INDEX_TUPLE_MAKE_INTEGER_SEQUENCE_HPP
|