libstdc++
|
00001 // <utility> -*- C++ -*- 00002 00003 // Copyright (C) 2001-2014 Free Software Foundation, Inc. 00004 // 00005 // This file is part of the GNU ISO C++ Library. This library is free 00006 // software; you can redistribute it and/or modify it under the 00007 // terms of the GNU General Public License as published by the 00008 // Free Software Foundation; either version 3, or (at your option) 00009 // any later version. 00010 00011 // This library is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU General Public License for more details. 00015 00016 // Under Section 7 of GPL version 3, you are granted additional 00017 // permissions described in the GCC Runtime Library Exception, version 00018 // 3.1, as published by the Free Software Foundation. 00019 00020 // You should have received a copy of the GNU General Public License and 00021 // a copy of the GCC Runtime Library Exception along with this program; 00022 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see 00023 // <http://www.gnu.org/licenses/>. 00024 00025 /* 00026 * 00027 * Copyright (c) 1994 00028 * Hewlett-Packard Company 00029 * 00030 * Permission to use, copy, modify, distribute and sell this software 00031 * and its documentation for any purpose is hereby granted without fee, 00032 * provided that the above copyright notice appear in all copies and 00033 * that both that copyright notice and this permission notice appear 00034 * in supporting documentation. Hewlett-Packard Company makes no 00035 * representations about the suitability of this software for any 00036 * purpose. It is provided "as is" without express or implied warranty. 00037 * 00038 * 00039 * Copyright (c) 1996,1997 00040 * Silicon Graphics Computer Systems, Inc. 00041 * 00042 * Permission to use, copy, modify, distribute and sell this software 00043 * and its documentation for any purpose is hereby granted without fee, 00044 * provided that the above copyright notice appear in all copies and 00045 * that both that copyright notice and this permission notice appear 00046 * in supporting documentation. Silicon Graphics makes no 00047 * representations about the suitability of this software for any 00048 * purpose. It is provided "as is" without express or implied warranty. 00049 */ 00050 00051 /** @file include/utility 00052 * This is a Standard C++ Library header. 00053 */ 00054 00055 #ifndef _GLIBCXX_UTILITY 00056 #define _GLIBCXX_UTILITY 1 00057 00058 #pragma GCC system_header 00059 00060 /** 00061 * @defgroup utilities Utilities 00062 * 00063 * Components deemed generally useful. Includes pair, tuple, 00064 * forward/move helpers, ratio, function object, metaprogramming and 00065 * type traits, time, date, and memory functions. 00066 */ 00067 00068 #include <bits/c++config.h> 00069 #include <bits/stl_relops.h> 00070 #include <bits/stl_pair.h> 00071 00072 #if __cplusplus >= 201103L 00073 00074 #include <bits/move.h> 00075 #include <initializer_list> 00076 00077 namespace std _GLIBCXX_VISIBILITY(default) 00078 { 00079 _GLIBCXX_BEGIN_NAMESPACE_VERSION 00080 00081 template<class _Tp> 00082 class tuple_size; 00083 00084 template<std::size_t _Int, class _Tp> 00085 class tuple_element; 00086 00087 // Various functions which give std::pair a tuple-like interface. 00088 template<class _Tp1, class _Tp2> 00089 struct tuple_size<std::pair<_Tp1, _Tp2>> 00090 : public integral_constant<std::size_t, 2> { }; 00091 00092 template<class _Tp1, class _Tp2> 00093 struct tuple_element<0, std::pair<_Tp1, _Tp2>> 00094 { typedef _Tp1 type; }; 00095 00096 template<class _Tp1, class _Tp2> 00097 struct tuple_element<1, std::pair<_Tp1, _Tp2>> 00098 { typedef _Tp2 type; }; 00099 00100 template<std::size_t _Int> 00101 struct __pair_get; 00102 00103 template<> 00104 struct __pair_get<0> 00105 { 00106 template<typename _Tp1, typename _Tp2> 00107 static constexpr _Tp1& 00108 __get(std::pair<_Tp1, _Tp2>& __pair) noexcept 00109 { return __pair.first; } 00110 00111 template<typename _Tp1, typename _Tp2> 00112 static constexpr _Tp1&& 00113 __move_get(std::pair<_Tp1, _Tp2>&& __pair) noexcept 00114 { return std::forward<_Tp1>(__pair.first); } 00115 00116 template<typename _Tp1, typename _Tp2> 00117 static constexpr const _Tp1& 00118 __const_get(const std::pair<_Tp1, _Tp2>& __pair) noexcept 00119 { return __pair.first; } 00120 }; 00121 00122 template<> 00123 struct __pair_get<1> 00124 { 00125 template<typename _Tp1, typename _Tp2> 00126 static constexpr _Tp2& 00127 __get(std::pair<_Tp1, _Tp2>& __pair) noexcept 00128 { return __pair.second; } 00129 00130 template<typename _Tp1, typename _Tp2> 00131 static constexpr _Tp2&& 00132 __move_get(std::pair<_Tp1, _Tp2>&& __pair) noexcept 00133 { return std::forward<_Tp2>(__pair.second); } 00134 00135 template<typename _Tp1, typename _Tp2> 00136 static constexpr const _Tp2& 00137 __const_get(const std::pair<_Tp1, _Tp2>& __pair) noexcept 00138 { return __pair.second; } 00139 }; 00140 00141 template<std::size_t _Int, class _Tp1, class _Tp2> 00142 constexpr typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type& 00143 get(std::pair<_Tp1, _Tp2>& __in) noexcept 00144 { return __pair_get<_Int>::__get(__in); } 00145 00146 template<std::size_t _Int, class _Tp1, class _Tp2> 00147 constexpr typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type&& 00148 get(std::pair<_Tp1, _Tp2>&& __in) noexcept 00149 { return __pair_get<_Int>::__move_get(std::move(__in)); } 00150 00151 template<std::size_t _Int, class _Tp1, class _Tp2> 00152 constexpr const typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type& 00153 get(const std::pair<_Tp1, _Tp2>& __in) noexcept 00154 { return __pair_get<_Int>::__const_get(__in); } 00155 00156 #if __cplusplus > 201103L 00157 00158 #define __cpp_lib_tuples_by_type 201304 00159 00160 template <typename _Tp, typename _Up> 00161 constexpr _Tp& 00162 get(pair<_Tp, _Up>& __p) noexcept 00163 { return __p.first; } 00164 00165 template <typename _Tp, typename _Up> 00166 constexpr const _Tp& 00167 get(const pair<_Tp, _Up>& __p) noexcept 00168 { return __p.first; } 00169 00170 template <typename _Tp, typename _Up> 00171 constexpr _Tp&& 00172 get(pair<_Tp, _Up>&& __p) noexcept 00173 { return std::move(__p.first); } 00174 00175 template <typename _Tp, typename _Up> 00176 constexpr _Tp& 00177 get(pair<_Up, _Tp>& __p) noexcept 00178 { return __p.second; } 00179 00180 template <typename _Tp, typename _Up> 00181 constexpr const _Tp& 00182 get(const pair<_Up, _Tp>& __p) noexcept 00183 { return __p.second; } 00184 00185 template <typename _Tp, typename _Up> 00186 constexpr _Tp&& 00187 get(pair<_Up, _Tp>&& __p) noexcept 00188 { return std::move(__p.second); } 00189 00190 #define __cpp_lib_exchange_function 201304 00191 00192 /// Assign @p __new_val to @p __obj and return its previous value. 00193 template <typename _Tp, typename _Up = _Tp> 00194 inline _Tp 00195 exchange(_Tp& __obj, _Up&& __new_val) 00196 { 00197 _Tp __old_val = std::move(__obj); 00198 __obj = std::forward<_Up>(__new_val); 00199 return __old_val; 00200 } 00201 #endif 00202 00203 // Stores a tuple of indices. Used by tuple and pair, and by bind() to 00204 // extract the elements in a tuple. 00205 template<size_t... _Indexes> 00206 struct _Index_tuple 00207 { 00208 typedef _Index_tuple<_Indexes..., sizeof...(_Indexes)> __next; 00209 }; 00210 00211 // Builds an _Index_tuple<0, 1, 2, ..., _Num-1>. 00212 template<size_t _Num> 00213 struct _Build_index_tuple 00214 { 00215 typedef typename _Build_index_tuple<_Num - 1>::__type::__next __type; 00216 }; 00217 00218 template<> 00219 struct _Build_index_tuple<0> 00220 { 00221 typedef _Index_tuple<> __type; 00222 }; 00223 00224 #if __cplusplus > 201103L 00225 00226 #define __cpp_lib_integer_sequence 201304 00227 00228 /// Class template integer_sequence 00229 template<typename _Tp, _Tp... _Idx> 00230 struct integer_sequence 00231 { 00232 typedef _Tp value_type; 00233 static constexpr size_t size() { return sizeof...(_Idx); } 00234 }; 00235 00236 template<typename _Tp, _Tp _Num, 00237 typename _ISeq = typename _Build_index_tuple<_Num>::__type> 00238 struct _Make_integer_sequence; 00239 00240 template<typename _Tp, _Tp _Num, size_t... _Idx> 00241 struct _Make_integer_sequence<_Tp, _Num, _Index_tuple<_Idx...>> 00242 { 00243 static_assert( _Num >= 0, 00244 "Cannot make integer sequence of negative length" ); 00245 00246 typedef integer_sequence<_Tp, static_cast<_Tp>(_Idx)...> __type; 00247 }; 00248 00249 /// Alias template make_integer_sequence 00250 template<typename _Tp, _Tp _Num> 00251 using make_integer_sequence 00252 = typename _Make_integer_sequence<_Tp, _Num>::__type; 00253 00254 /// Alias template index_sequence 00255 template<size_t... _Idx> 00256 using index_sequence = integer_sequence<size_t, _Idx...>; 00257 00258 /// Alias template make_index_sequence 00259 template<size_t _Num> 00260 using make_index_sequence = make_integer_sequence<size_t, _Num>; 00261 00262 /// Alias template index_sequence_for 00263 template<typename... _Types> 00264 using index_sequence_for = make_index_sequence<sizeof...(_Types)>; 00265 #endif 00266 00267 _GLIBCXX_END_NAMESPACE_VERSION 00268 } // namespace 00269 00270 #endif 00271 00272 #endif /* _GLIBCXX_UTILITY */