1 // class template tuple -*- C++ -*-
3 // Copyright (C) 2004, 2005 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction. Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License. This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
31 * This is an internal header file, included by other library headers.
32 * You should not attempt to use it directly.
35 // Chris Jefferson <chris@bubblescope.net>
37 /// @brief class tuple_size
38 template<_GLIBCXX_TEMPLATE_PARAMS
>
39 struct tuple_size
<tuple
<_GLIBCXX_TEMPLATE_ARGS
> >
40 { static const int value
= _GLIBCXX_NUM_ARGS
; };
42 template<_GLIBCXX_TEMPLATE_PARAMS
>
43 #ifdef _GLIBCXX_LAST_INCLUDE
46 class tuple
<_GLIBCXX_TEMPLATE_ARGS
>
55 #if _GLIBCXX_NUM_ARGS == 2
56 template<typename _U1
, typename _U2
>
57 tuple(const std::pair
<_U1
, _U2
>& __u
) :
58 _M_arg1(__u
.first
), _M_arg2(__u
.second
)
61 template<typename _U1
, typename _U2
>
63 operator=(const std::pair
<_U1
, _U2
>& __u
)
71 #if _GLIBCXX_NUM_ARGS > 0
72 explicit tuple(_GLIBCXX_TUPLE_ADD_CREF
) :
73 _GLIBCXX_BIND_MEMBERS_INIT
76 template<_GLIBCXX_TEMPLATE_PARAMS_U
>
77 tuple(const tuple
<_GLIBCXX_TEMPLATE_ARGS_U
>& __in
) :
78 _GLIBCXX_TUPLE_COPY_INIT
82 template<_GLIBCXX_TEMPLATE_PARAMS_U
>
84 operator=(const tuple
<_GLIBCXX_TEMPLATE_ARGS_U
>& __in
)
90 tuple(const tuple
& __in
) :
91 _GLIBCXX_TUPLE_COPY_INIT
102 operator=(const tuple
& __in
__attribute__((__unused__
)) )
104 _GLIBCXX_TUPLE_ASSIGN
108 template<int __i
, typename __Type
>
109 friend class __get_helper
;
111 template<typename
, typename
, typename
, typename
, typename
,
112 typename
, typename
, typename
, typename
, typename
>
116 #ifndef _GLIBCXX_LAST_INCLUDE
118 template<typename _Tp
>
119 struct __get_helper
<_GLIBCXX_NUM_ARGS
, _Tp
>
121 static typename __add_ref
<typename tuple_element
<_GLIBCXX_NUM_ARGS
,
124 { return __in
._GLIBCXX_CAT(_M_arg
,_GLIBCXX_NUM_ARGS_PLUS_1
); }
126 static typename __add_c_ref
<typename tuple_element
<_GLIBCXX_NUM_ARGS
,
128 get_value(const _Tp
& __in
)
129 { return __in
._GLIBCXX_CAT(_M_arg
,_GLIBCXX_NUM_ARGS_PLUS_1
); }
132 /// @brief class tuple_element
133 template<typename _T1
, typename _T2
, typename _T3
, typename _T4
,
134 typename _T5
, typename _T6
, typename _T7
, typename _T8
,
135 typename _T9
, typename _T10
>
136 struct tuple_element
<_GLIBCXX_NUM_ARGS
, tuple
<_T1
, _T2
, _T3
, _T4
,
137 _T5
, _T6
, _T7
, _T8
, _T9
,
139 { typedef _GLIBCXX_T_NUM_ARGS_PLUS_1 type
; };
142 #if _GLIBCXX_NUM_ARGS == 0
146 { return tuple
<>(); }
150 { return tuple
<>(); }
153 template<_GLIBCXX_TEMPLATE_PARAMS
>
154 typename __stripped_tuple_type
<_GLIBCXX_TEMPLATE_ARGS
>::__type
155 inline make_tuple(_GLIBCXX_PARAMS
)
157 return typename __stripped_tuple_type
<_GLIBCXX_TEMPLATE_ARGS
>::
158 __type(_GLIBCXX_ARGS
);
161 template<_GLIBCXX_TEMPLATE_PARAMS
>
162 tuple
<_GLIBCXX_REF_TEMPLATE_ARGS
>
163 inline tie(_GLIBCXX_REF_PARAMS
)
164 { return make_tuple(_GLIBCXX_REF_WRAP_PARAMS
); }