Sprout/sprout/index_tuple/index_range.hpp

54 lines
2.1 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_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
// uindex_range
2012-04-04 13:59:02 +00: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 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
: public typename sprout::integer_range<sprout::index_t, First, Last, Step>::type
::template transfer<sprout::index_tuple<> >
2013-03-31 04:39:26 +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
: public typename sprout::integer_range<sprout::uindex_t, First, Last, Step>::type
::template transfer<sprout::uindex_tuple<> >
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_RANGE_HPP