| 
									
										
										
										
											2017-05-23 20:24:37 +03:00
										 |  |  | #ifndef BOOST_MP11_INTEGER_SEQUENCE_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define BOOST_MP11_INTEGER_SEQUENCE_HPP_INCLUDED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-15 20:22:39 +02:00
										 |  |  | // Copyright 2015, 2017, 2019 Peter Dimov.
 | 
					
						
							| 
									
										
										
										
											2017-05-23 20:24:37 +03:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2019-01-15 20:22:39 +02:00
										 |  |  | // Distributed under the Boost Software License, Version 1.0.
 | 
					
						
							| 
									
										
										
										
											2017-05-23 20:24:37 +03:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2019-01-15 20:22:39 +02:00
										 |  |  | // See accompanying file LICENSE_1_0.txt or copy at
 | 
					
						
							|  |  |  | // http://www.boost.org/LICENSE_1_0.txt
 | 
					
						
							| 
									
										
										
										
											2015-06-22 02:23:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <cstddef>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-15 20:22:39 +02:00
										 |  |  | #if defined(__has_builtin)
 | 
					
						
							|  |  |  | # if __has_builtin(__make_integer_seq)
 | 
					
						
							|  |  |  | #  define BOOST_MP11_HAS_MAKE_INTEGER_SEQ
 | 
					
						
							|  |  |  | # endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 02:23:20 +03:00
										 |  |  | namespace boost | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-23 20:24:37 +03:00
										 |  |  | namespace mp11 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-06-22 02:23:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | // integer_sequence
 | 
					
						
							|  |  |  | template<class T, T... I> struct integer_sequence | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-15 20:22:39 +02:00
										 |  |  | #if defined(BOOST_MP11_HAS_MAKE_INTEGER_SEQ)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class T, T N> using make_integer_sequence = __make_integer_seq<integer_sequence, T, N>; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 02:23:20 +03:00
										 |  |  | // detail::make_integer_sequence_impl
 | 
					
						
							|  |  |  | namespace detail | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // iseq_if_c
 | 
					
						
							|  |  |  | template<bool C, class T, class E> struct iseq_if_c_impl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class T, class E> struct iseq_if_c_impl<true, T, E> | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     using type = T; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class T, class E> struct iseq_if_c_impl<false, T, E> | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     using type = E; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<bool C, class T, class E> using iseq_if_c = typename iseq_if_c_impl<C, T, E>::type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // iseq_identity
 | 
					
						
							|  |  |  | template<class T> struct iseq_identity | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     using type = T; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class S1, class S2> struct append_integer_sequence; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class T, T... I, T... J> struct append_integer_sequence<integer_sequence<T, I...>, integer_sequence<T, J...>> | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     using type = integer_sequence< T, I..., ( J + sizeof...(I) )... >; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class T, T N> struct make_integer_sequence_impl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class T, T N> struct make_integer_sequence_impl_ | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 03:37:15 +03:00
										 |  |  |     static_assert( N >= 0, "make_integer_sequence<T, N>: N must not be negative" ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 02:23:20 +03:00
										 |  |  |     static T const M = N / 2; | 
					
						
							|  |  |  |     static T const R = N % 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     using S1 = typename make_integer_sequence_impl<T, M>::type; | 
					
						
							|  |  |  |     using S2 = typename append_integer_sequence<S1, S1>::type; | 
					
						
							|  |  |  |     using S3 = typename make_integer_sequence_impl<T, R>::type; | 
					
						
							|  |  |  |     using S4 = typename append_integer_sequence<S2, S3>::type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     using type = S4; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-05 18:55:25 +02:00
										 |  |  | template<class T, T N> struct make_integer_sequence_impl: iseq_if_c<N == 0, iseq_identity<integer_sequence<T>>, iseq_if_c<N == 1, iseq_identity<integer_sequence<T, 0>>, make_integer_sequence_impl_<T, N> > > | 
					
						
							| 
									
										
										
										
											2015-06-22 02:23:20 +03:00
										 |  |  | { | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace detail
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // make_integer_sequence
 | 
					
						
							|  |  |  | template<class T, T N> using make_integer_sequence = typename detail::make_integer_sequence_impl<T, N>::type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-15 20:22:39 +02:00
										 |  |  | #endif // defined(BOOST_MP11_HAS_MAKE_INTEGER_SEQ)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 02:23:20 +03:00
										 |  |  | // index_sequence
 | 
					
						
							|  |  |  | template<std::size_t... I> using index_sequence = integer_sequence<std::size_t, I...>; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // make_index_sequence
 | 
					
						
							|  |  |  | template<std::size_t N> using make_index_sequence = make_integer_sequence<std::size_t, N>; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // index_sequence_for
 | 
					
						
							|  |  |  | template<class... T> using index_sequence_for = make_integer_sequence<std::size_t, sizeof...(T)>; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-23 20:24:37 +03:00
										 |  |  | } // namespace mp11
 | 
					
						
							| 
									
										
										
										
											2015-06-22 02:23:20 +03:00
										 |  |  | } // namespace boost
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-23 20:24:37 +03:00
										 |  |  | #endif // #ifndef BOOST_MP11_INTEGER_SEQUENCE_HPP_INCLUDED
 |