mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
37 lines
898 B
C++
37 lines
898 B
C++
|
#ifndef SPROUT_INDEX_TUPLE_INTEGER_SEQUENCE_HPP
|
||
|
#define SPROUT_INDEX_TUPLE_INTEGER_SEQUENCE_HPP
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include <sprout/config.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
//
|
||
|
// integer_sequence
|
||
|
//
|
||
|
template<typename T, T... Is>
|
||
|
struct integer_sequence {
|
||
|
public:
|
||
|
typedef integer_sequence type;
|
||
|
template<T... J>
|
||
|
struct rebind
|
||
|
: public integer_sequence<T, J...>
|
||
|
{};
|
||
|
public:
|
||
|
typedef T value_type;
|
||
|
template<typename Seq>
|
||
|
struct transfer
|
||
|
: public Seq::template rebind<Is...>
|
||
|
{};
|
||
|
public:
|
||
|
SPROUT_STATIC_CONSTEXPR std::size_t static_size = sizeof...(Is);
|
||
|
public:
|
||
|
static SPROUT_CONSTEXPR size_t size() noexcept {
|
||
|
return static_size;
|
||
|
}
|
||
|
};
|
||
|
template<typename T, T... Is>
|
||
|
SPROUT_CONSTEXPR_OR_CONST std::size_t sprout::integer_sequence<T, Is...>::static_size;
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_INDEX_TUPLE_INTEGER_SEQUENCE_HPP
|