1 // Move, forward and identity for C++0x + swap -*- C++ -*-
3 // Copyright (C) 2007, 2008, 2009, 2010, 2011 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 3, 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 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
26 * This is an internal header file, included by other library headers.
27 * Do not attempt to use it directly. @headername{utility}
33 #include <bits/c++config.h>
34 #include <bits/concept_check.h>
36 namespace std
_GLIBCXX_VISIBILITY(default)
38 _GLIBCXX_BEGIN_NAMESPACE_VERSION
40 // Used, in C++03 mode too, by allocators, etc.
41 template<typename _Tp
>
43 __addressof(_Tp
& __r
) _GLIBCXX_NOEXCEPT
45 return reinterpret_cast<_Tp
*>
46 (&const_cast<char&>(reinterpret_cast<const volatile char&>(__r
)));
49 _GLIBCXX_END_NAMESPACE_VERSION
52 #ifdef __GXX_EXPERIMENTAL_CXX0X__
53 #include <type_traits> // Brings in std::declval too.
55 namespace std
_GLIBCXX_VISIBILITY(default)
57 _GLIBCXX_BEGIN_NAMESPACE_VERSION
59 /// forward (as per N3143)
60 template<typename _Tp
>
62 forward(typename
std::remove_reference
<_Tp
>::type
& __t
) noexcept
63 { return static_cast<_Tp
&&>(__t
); }
65 template<typename _Tp
>
67 forward(typename
std::remove_reference
<_Tp
>::type
&& __t
) noexcept
69 static_assert(!std::is_lvalue_reference
<_Tp
>::value
, "template argument"
70 " substituting _Tp is an lvalue reference type");
71 return static_cast<_Tp
&&>(__t
);
75 * @brief Move a value.
77 * @param __t A thing of arbitrary type.
78 * @return Same, moved.
80 template<typename _Tp
>
81 inline typename
std::remove_reference
<_Tp
>::type
&&
82 move(_Tp
&& __t
) noexcept
83 { return static_cast<typename
std::remove_reference
<_Tp
>::type
&&>(__t
); }
86 * @brief Move unless it could throw and the type is copyable.
88 * @param __x A thing of arbitrary type.
89 * @return Same, possibly moved.
91 template<typename _Tp
>
93 conditional
<(!is_nothrow_move_constructible
<_Tp
>::value
94 && is_copy_constructible
<_Tp
>::value
),
95 const _Tp
&, _Tp
&&>::type
96 move_if_noexcept(_Tp
& __x
) noexcept
97 { return std::move(__x
); }
99 /// declval, from type_traits.
102 * @brief Returns the actual address of the object or function
103 * referenced by r, even in the presence of an overloaded
106 * @param __r Reference to an object or function.
107 * @return The actual address.
109 template<typename _Tp
>
111 addressof(_Tp
& __r
) noexcept
112 { return std::__addressof(__r
); }
114 _GLIBCXX_END_NAMESPACE_VERSION
117 #define _GLIBCXX_MOVE(__val) std::move(__val)
118 #define _GLIBCXX_FORWARD(_Tp, __val) std::forward<_Tp>(__val)
120 #define _GLIBCXX_MOVE(__val) (__val)
121 #define _GLIBCXX_FORWARD(_Tp, __val) (__val)
124 namespace std
_GLIBCXX_VISIBILITY(default)
126 _GLIBCXX_BEGIN_NAMESPACE_VERSION
129 * @brief Swaps two values.
131 * @param __a A thing of arbitrary type.
132 * @param __b Another thing of arbitrary type.
135 template<typename _Tp
>
137 swap(_Tp
& __a
, _Tp
& __b
)
138 #ifdef __GXX_EXPERIMENTAL_CXX0X__
139 noexcept(is_nothrow_move_constructible
<_Tp
>::value
140 && is_nothrow_move_assignable
<_Tp
>::value
)
143 // concept requirements
144 __glibcxx_function_requires(_SGIAssignableConcept
<_Tp
>)
146 _Tp __tmp
= _GLIBCXX_MOVE(__a
);
147 __a
= _GLIBCXX_MOVE(__b
);
148 __b
= _GLIBCXX_MOVE(__tmp
);
151 // _GLIBCXX_RESOLVE_LIB_DEFECTS
152 // DR 809. std::swap should be overloaded for array types.
153 template<typename _Tp
, size_t _Nm
>
155 swap(_Tp (&__a
)[_Nm
], _Tp (&__b
)[_Nm
])
156 // noexcept waits for c++/49045
158 for (size_t __n
= 0; __n
< _Nm
; ++__n
)
159 swap(__a
[__n
], __b
[__n
]);
162 _GLIBCXX_END_NAMESPACE_VERSION