]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/container/detail/variadic_templates_tools.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / container / detail / variadic_templates_tools.hpp
CommitLineData
7c673cae
FG
1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2008-2013. Distributed under the Boost
4// Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6//
7// See http://www.boost.org/libs/container for documentation.
8//
9//////////////////////////////////////////////////////////////////////////////
10
11#ifndef BOOST_CONTAINER_DETAIL_VARIADIC_TEMPLATES_TOOLS_HPP
12#define BOOST_CONTAINER_DETAIL_VARIADIC_TEMPLATES_TOOLS_HPP
13
14#ifndef BOOST_CONFIG_HPP
15# include <boost/config.hpp>
16#endif
17
18#if defined(BOOST_HAS_PRAGMA_ONCE)
19# pragma once
20#endif
21
22#include <boost/container/detail/config_begin.hpp>
23#include <boost/container/detail/workaround.hpp>
24#include <boost/move/utility_core.hpp>
25
26#include <boost/container/detail/type_traits.hpp>
27#include <cstddef> //std::size_t
28
29namespace boost {
30namespace container {
11fdf7f2 31namespace dtl {
7c673cae
FG
32
33template<typename... Values>
34class tuple;
35
36template<> class tuple<>
37{};
38
39template<typename Head, typename... Tail>
40class tuple<Head, Tail...>
41 : private tuple<Tail...>
42{
43 typedef tuple<Tail...> inherited;
44
45 public:
46 tuple()
47 : inherited(), m_head()
48 {}
49
50 template<class U, class ...Args>
51 tuple(U &&u, Args && ...args)
52 : inherited(::boost::forward<Args>(args)...), m_head(::boost::forward<U>(u))
53 {}
54
55 // Construct tuple from another tuple.
56 template<typename... VValues>
57 tuple(const tuple<VValues...>& other)
58 : inherited(other.tail()), m_head(other.head())
59 {}
60
61 template<typename... VValues>
62 tuple& operator=(const tuple<VValues...>& other)
63 {
64 m_head = other.head();
65 tail() = other.tail();
66 return this;
67 }
68
69 typename add_reference<Head>::type head() { return m_head; }
70 typename add_reference<const Head>::type head() const { return m_head; }
71
72 inherited& tail() { return *this; }
73 const inherited& tail() const { return *this; }
74
75 protected:
76 Head m_head;
77};
78
79
80template<typename... Values>
92f5a8d4 81tuple<Values&&...> forward_as_tuple_impl(Values&&... values)
7c673cae
FG
82{ return tuple<Values&&...>(::boost::forward<Values>(values)...); }
83
84template<int I, typename Tuple>
85struct tuple_element;
86
87template<int I, typename Head, typename... Tail>
88struct tuple_element<I, tuple<Head, Tail...> >
89{
90 typedef typename tuple_element<I-1, tuple<Tail...> >::type type;
91};
92
93template<typename Head, typename... Tail>
94struct tuple_element<0, tuple<Head, Tail...> >
95{
96 typedef Head type;
97};
98
99template<int I, typename Tuple>
100class get_impl;
101
102template<int I, typename Head, typename... Values>
103class get_impl<I, tuple<Head, Values...> >
104{
105 typedef typename tuple_element<I-1, tuple<Values...> >::type Element;
106 typedef get_impl<I-1, tuple<Values...> > Next;
107
108 public:
109 typedef typename add_reference<Element>::type type;
110 typedef typename add_const_reference<Element>::type const_type;
111 static type get(tuple<Head, Values...>& t) { return Next::get(t.tail()); }
112 static const_type get(const tuple<Head, Values...>& t) { return Next::get(t.tail()); }
113};
114
115template<typename Head, typename... Values>
116class get_impl<0, tuple<Head, Values...> >
117{
118 public:
119 typedef typename add_reference<Head>::type type;
120 typedef typename add_const_reference<Head>::type const_type;
121 static type get(tuple<Head, Values...>& t) { return t.head(); }
122 static const_type get(const tuple<Head, Values...>& t){ return t.head(); }
123};
124
125template<int I, typename... Values>
126typename get_impl<I, tuple<Values...> >::type get(tuple<Values...>& t)
127{ return get_impl<I, tuple<Values...> >::get(t); }
128
129template<int I, typename... Values>
130typename get_impl<I, tuple<Values...> >::const_type get(const tuple<Values...>& t)
131{ return get_impl<I, tuple<Values...> >::get(t); }
132
133////////////////////////////////////////////////////
134// Builds an index_tuple<0, 1, 2, ..., Num-1>, that will
135// be used to "unpack" into comma-separated values
136// in a function call.
137////////////////////////////////////////////////////
138
b32b8144 139template<std::size_t...> struct index_tuple{ typedef index_tuple type; };
7c673cae 140
b32b8144 141template<class S1, class S2> struct concat_index_tuple;
7c673cae 142
b32b8144
FG
143template<std::size_t... I1, std::size_t... I2>
144struct concat_index_tuple<index_tuple<I1...>, index_tuple<I2...>>
145 : index_tuple<I1..., (sizeof...(I1)+I2)...>{};
146
147template<std::size_t N> struct build_number_seq;
7c673cae 148
b32b8144
FG
149template<std::size_t N>
150struct build_number_seq
151 : concat_index_tuple<typename build_number_seq<N/2>::type
152 ,typename build_number_seq<N - N/2 >::type
153 >::type
154{};
7c673cae 155
b32b8144
FG
156template<> struct build_number_seq<0> : index_tuple<>{};
157template<> struct build_number_seq<1> : index_tuple<0>{};
7c673cae 158
11fdf7f2 159}}} //namespace boost { namespace container { namespace dtl {
7c673cae
FG
160
161#include <boost/container/detail/config_end.hpp>
162
163#endif //#ifndef BOOST_CONTAINER_DETAIL_VARIADIC_TEMPLATES_TOOLS_HPP