2013-08-08 18:54:33 +09: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 22:59:02 +09:00
|
|
|
#ifndef SPROUT_INDEX_TUPLE_INDEX_RANGE_HPP
|
|
|
|
#define SPROUT_INDEX_TUPLE_INDEX_RANGE_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/index_tuple/index_tuple.hpp>
|
2013-03-31 13:39:26 +09:00
|
|
|
#include <sprout/index_tuple/integer_range.hpp>
|
2012-04-04 22:59:02 +09:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// index_range
|
2013-05-10 21:53:53 +09:00
|
|
|
// uindex_range
|
2012-04-04 22:59:02 +09:00
|
|
|
//
|
2013-05-10 21:53:53 +09:00
|
|
|
#if SPROUT_USE_TEMPLATE_ALIASES
|
|
|
|
template<
|
|
|
|
sprout::index_t First, sprout::index_t Last,
|
|
|
|
typename std::make_signed<sprout::index_t>::type Step = sprout::detail::integer_range_default_step<sprout::index_t, First, Last>::value
|
|
|
|
>
|
|
|
|
using index_range = sprout::integer_range<sprout::index_t, First, Last, Step>;
|
|
|
|
|
|
|
|
template<
|
|
|
|
sprout::uindex_t First, sprout::uindex_t Last,
|
|
|
|
typename std::make_signed<sprout::uindex_t>::type Step = sprout::detail::integer_range_default_step<sprout::uindex_t, First, Last>::value
|
|
|
|
>
|
|
|
|
using uindex_range = sprout::integer_range<sprout::uindex_t, First, Last, Step>;
|
|
|
|
#else // #if SPROUT_USE_TEMPLATE_ALIASES
|
2013-04-05 23:37:24 +09:00
|
|
|
template<
|
|
|
|
sprout::index_t First, sprout::index_t Last,
|
|
|
|
typename std::make_signed<sprout::index_t>::type Step = sprout::detail::integer_range_default_step<sprout::index_t, First, Last>::value
|
|
|
|
>
|
2012-04-04 22:59:02 +09:00
|
|
|
struct index_range
|
2013-05-12 11:05:31 +09:00
|
|
|
: public typename sprout::integer_range<sprout::index_t, First, Last, Step>::type
|
|
|
|
::template transfer<sprout::index_tuple<> >
|
2013-03-31 13:39:26 +09:00
|
|
|
{};
|
2013-05-10 21:53:53 +09:00
|
|
|
|
2013-04-05 23:37:24 +09:00
|
|
|
template<
|
|
|
|
sprout::uindex_t First, sprout::uindex_t Last,
|
|
|
|
typename std::make_signed<sprout::uindex_t>::type Step = sprout::detail::integer_range_default_step<sprout::uindex_t, First, Last>::value
|
|
|
|
>
|
2013-03-31 13:39:26 +09:00
|
|
|
struct uindex_range
|
2013-05-12 11:05:31 +09:00
|
|
|
: public typename sprout::integer_range<sprout::uindex_t, First, Last, Step>::type
|
|
|
|
::template transfer<sprout::uindex_tuple<> >
|
2012-04-04 22:59:02 +09:00
|
|
|
{};
|
2013-05-10 21:53:53 +09:00
|
|
|
#endif // #if SPROUT_USE_TEMPLATE_ALIASES
|
2012-04-04 22:59:02 +09:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_RANGE_HPP
|