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)
|
|
|
|
=============================================================================*/
|
2012-04-04 13:59:02 +00: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 04:39:26 +00:00
|
|
|
#include <sprout/index_tuple/integer_range.hpp>
|
2012-04-04 13:59:02 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// index_range
|
2013-05-10 12:53:53 +00:00
|
|
|
// uindex_range
|
2012-04-04 13:59:02 +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-10 12:53:53 +00: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
|
|
|
|
>
|
|
|
|
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>;
|
2014-03-07 10:49:30 +00:00
|
|
|
#else // #if SPROUT_USE_TEMPLATE_ALIASES && !defined(SPROUT_WORKAROUND_NO_TEMPLATE_ARGUMENT_DEDUCTION_WITH_ALIASES)
|
2013-04-05 14:37:24 +00: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 13:59:02 +00:00
|
|
|
struct index_range
|
2014-01-18 04:35:18 +00:00
|
|
|
: public sprout::integer_range<sprout::index_t, First, Last, Step>::type
|
2013-05-12 02:05:31 +00:00
|
|
|
::template transfer<sprout::index_tuple<> >
|
2013-03-31 04:39:26 +00:00
|
|
|
{};
|
2013-05-10 12:53:53 +00:00
|
|
|
|
2013-04-05 14:37:24 +00: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 04:39:26 +00:00
|
|
|
struct uindex_range
|
2014-01-18 04:35:18 +00:00
|
|
|
: public sprout::integer_range<sprout::uindex_t, First, Last, Step>::type
|
2013-05-12 02:05:31 +00:00
|
|
|
::template transfer<sprout::uindex_tuple<> >
|
2012-04-04 13:59:02 +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)
|
2012-04-04 13:59:02 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_RANGE_HPP
|