From 5cde13f21d36c7224b0e13d11c4b49379ae5210d Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Thu, 6 Oct 2016 10:38:45 +0900 Subject: Imported Upstream version 1.61.0 Change-Id: I96a1f878d1e6164f01e9aadd5147f38fca448d90 Signed-off-by: DongHun Kwak --- boost/context/detail/index_sequence.hpp | 72 +++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 boost/context/detail/index_sequence.hpp (limited to 'boost/context/detail/index_sequence.hpp') diff --git a/boost/context/detail/index_sequence.hpp b/boost/context/detail/index_sequence.hpp new file mode 100644 index 0000000000..2d484ba062 --- /dev/null +++ b/boost/context/detail/index_sequence.hpp @@ -0,0 +1,72 @@ + +// Copyright Oliver Kowalke 2014. +// 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) + +#ifndef BOOST_CONTEXT_DETAIL_INDEX_SEQUENCE_H +#define BOOST_CONTEXT_DETAIL_INDEX_SEQUENCE_H + +#include + +#include + +#include + +#ifdef BOOST_HAS_ABI_HEADERS +# include BOOST_ABI_PREFIX +#endif + +namespace boost { +namespace context { +namespace detail { + +#if ! defined(BOOST_CONTEXT_NO_CXX14_INTEGER_SEQUENCE) +template< std::size_t ... I > +using index_sequence = std::index_sequence< I ... >; +template< std::size_t I > +using make_index_sequence = std::make_index_sequence< I >; +template< typename ... T > +using index_sequence_for = std::index_sequence_for< T ... >; +#else +//http://stackoverflow.com/questions/17424477/implementation-c14-make-integer-sequence + +template< std::size_t ... I > +struct index_sequence { + using type = index_sequence; + using value_type = std::size_t; + static constexpr std::size_t size() { + return sizeof ... (I); + } +}; + +template< typename Seq1, typename Seq2 > +struct concat_sequence; + +template< std::size_t ... I1, std::size_t ... I2 > +struct concat_sequence< index_sequence< I1 ... >, index_sequence< I2 ... > > : public index_sequence< I1 ..., (sizeof ... (I1)+I2) ... > { +}; + +template< std::size_t I > +struct make_index_sequence : public concat_sequence< typename make_index_sequence< I/2 >::type, + typename make_index_sequence< I-I/2 >::type > { +}; + +template<> +struct make_index_sequence< 0 > : public index_sequence<> { +}; +template<> +struct make_index_sequence< 1 > : public index_sequence< 0 > { +}; + +template< typename ... T > +using index_sequence_for = make_index_sequence< sizeof ... (T) >; +#endif + +}}} + +#ifdef BOOST_HAS_ABI_HEADERS +#include BOOST_ABI_SUFFIX +#endif + +#endif // BOOST_CONTEXT_DETAIL_INDEX_SEQUENCE_H -- cgit v1.2.3