Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===------------------------ functional ----------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_FUNCTIONAL |
| 12 | #define _LIBCPP_FUNCTIONAL |
| 13 | |
| 14 | /* |
| 15 | functional synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | template <class Arg, class Result> |
| 21 | struct unary_function |
| 22 | { |
| 23 | typedef Arg argument_type; |
| 24 | typedef Result result_type; |
| 25 | }; |
| 26 | |
| 27 | template <class Arg1, class Arg2, class Result> |
| 28 | struct binary_function |
| 29 | { |
| 30 | typedef Arg1 first_argument_type; |
| 31 | typedef Arg2 second_argument_type; |
| 32 | typedef Result result_type; |
| 33 | }; |
| 34 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 35 | template <class T> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 36 | class reference_wrapper |
| 37 | : public unary_function<T1, R> // if wrapping a unary functor |
| 38 | : public binary_function<T1, T2, R> // if wraping a binary functor |
| 39 | { |
| 40 | public: |
| 41 | // types |
| 42 | typedef T type; |
| 43 | typedef see below result_type; // Not always defined |
| 44 | |
| 45 | // construct/copy/destroy |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 46 | reference_wrapper(T&) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 47 | reference_wrapper(T&&) = delete; // do not bind to temps |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 48 | reference_wrapper(const reference_wrapper<T>& x) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 49 | |
| 50 | // assignment |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 51 | reference_wrapper& operator=(const reference_wrapper<T>& x) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 52 | |
| 53 | // access |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 54 | operator T& () const noexcept; |
| 55 | T& get() const noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 56 | |
| 57 | // invoke |
| 58 | template <class... ArgTypes> |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 59 | typename result_of<T(ArgTypes...)>::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 60 | operator() (ArgTypes&&...) const; |
| 61 | }; |
| 62 | |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 63 | template <class T> reference_wrapper<T> ref(T& t) noexcept; |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 64 | template <class T> void ref(const T&& t) = delete; |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 65 | template <class T> reference_wrapper<T> ref(reference_wrapper<T>t) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 66 | |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 67 | template <class T> reference_wrapper<const T> cref(const T& t) noexcept; |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 68 | template <class T> void cref(const T&& t) = delete; |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 69 | template <class T> reference_wrapper<const T> cref(reference_wrapper<T> t) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 70 | |
| 71 | template <class T> |
| 72 | struct plus : binary_function<T, T, T> |
| 73 | { |
| 74 | T operator()(const T& x, const T& y) const; |
| 75 | }; |
| 76 | |
| 77 | template <class T> |
| 78 | struct minus : binary_function<T, T, T> |
| 79 | { |
| 80 | T operator()(const T& x, const T& y) const; |
| 81 | }; |
| 82 | |
| 83 | template <class T> |
| 84 | struct multiplies : binary_function<T, T, T> |
| 85 | { |
| 86 | T operator()(const T& x, const T& y) const; |
| 87 | }; |
| 88 | |
| 89 | template <class T> |
| 90 | struct divides : binary_function<T, T, T> |
| 91 | { |
| 92 | T operator()(const T& x, const T& y) const; |
| 93 | }; |
| 94 | |
| 95 | template <class T> |
| 96 | struct modulus : binary_function<T, T, T> |
| 97 | { |
| 98 | T operator()(const T& x, const T& y) const; |
| 99 | }; |
| 100 | |
| 101 | template <class T> |
| 102 | struct negate : unary_function<T, T> |
| 103 | { |
| 104 | T operator()(const T& x) const; |
| 105 | }; |
| 106 | |
| 107 | template <class T> |
| 108 | struct equal_to : binary_function<T, T, bool> |
| 109 | { |
| 110 | bool operator()(const T& x, const T& y) const; |
| 111 | }; |
| 112 | |
| 113 | template <class T> |
| 114 | struct not_equal_to : binary_function<T, T, bool> |
| 115 | { |
| 116 | bool operator()(const T& x, const T& y) const; |
| 117 | }; |
| 118 | |
| 119 | template <class T> |
| 120 | struct greater : binary_function<T, T, bool> |
| 121 | { |
| 122 | bool operator()(const T& x, const T& y) const; |
| 123 | }; |
| 124 | |
| 125 | template <class T> |
| 126 | struct less : binary_function<T, T, bool> |
| 127 | { |
| 128 | bool operator()(const T& x, const T& y) const; |
| 129 | }; |
| 130 | |
| 131 | template <class T> |
| 132 | struct greater_equal : binary_function<T, T, bool> |
| 133 | { |
| 134 | bool operator()(const T& x, const T& y) const; |
| 135 | }; |
| 136 | |
| 137 | template <class T> |
| 138 | struct less_equal : binary_function<T, T, bool> |
| 139 | { |
| 140 | bool operator()(const T& x, const T& y) const; |
| 141 | }; |
| 142 | |
| 143 | template <class T> |
| 144 | struct logical_and : binary_function<T, T, bool> |
| 145 | { |
| 146 | bool operator()(const T& x, const T& y) const; |
| 147 | }; |
| 148 | |
| 149 | template <class T> |
| 150 | struct logical_or : binary_function<T, T, bool> |
| 151 | { |
| 152 | bool operator()(const T& x, const T& y) const; |
| 153 | }; |
| 154 | |
| 155 | template <class T> |
| 156 | struct logical_not : unary_function<T, bool> |
| 157 | { |
| 158 | bool operator()(const T& x) const; |
| 159 | }; |
| 160 | |
| 161 | template <class Predicate> |
| 162 | class unary_negate |
| 163 | : public unary_function<typename Predicate::argument_type, bool> |
| 164 | { |
| 165 | public: |
| 166 | explicit unary_negate(const Predicate& pred); |
| 167 | bool operator()(const typename Predicate::argument_type& x) const; |
| 168 | }; |
| 169 | |
| 170 | template <class Predicate> unary_negate<Predicate> not1(const Predicate& pred); |
| 171 | |
| 172 | template <class Predicate> |
| 173 | class binary_negate |
| 174 | : public binary_function<typename Predicate::first_argument_type, |
| 175 | typename Predicate::second_argument_type, |
| 176 | bool> |
| 177 | { |
| 178 | public: |
| 179 | explicit binary_negate(const Predicate& pred); |
| 180 | bool operator()(const typename Predicate::first_argument_type& x, |
| 181 | const typename Predicate::second_argument_type& y) const; |
| 182 | }; |
| 183 | |
| 184 | template <class Predicate> binary_negate<Predicate> not2(const Predicate& pred); |
| 185 | |
| 186 | template<class T> struct is_bind_expression; |
| 187 | template<class T> struct is_placeholder; |
| 188 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 189 | template<class Fn, class... BoundArgs> |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 190 | unspecified bind(Fn&&, BoundArgs&&...); |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 191 | template<class R, class Fn, class... BoundArgs> |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 192 | unspecified bind(Fn&&, BoundArgs&&...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 193 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 194 | namespace placeholders { |
| 195 | // M is the implementation-defined number of placeholders |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 196 | extern unspecified _1; |
| 197 | extern unspecified _2; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 198 | . |
| 199 | . |
| 200 | . |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 201 | extern unspecified _Mp; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | template <class Operation> |
| 205 | class binder1st |
| 206 | : public unary_function<typename Operation::second_argument_type, |
| 207 | typename Operation::result_type> |
| 208 | { |
| 209 | protected: |
| 210 | Operation op; |
| 211 | typename Operation::first_argument_type value; |
| 212 | public: |
| 213 | binder1st(const Operation& x, const typename Operation::first_argument_type y); |
| 214 | typename Operation::result_type operator()( typename Operation::second_argument_type& x) const; |
| 215 | typename Operation::result_type operator()(const typename Operation::second_argument_type& x) const; |
| 216 | }; |
| 217 | |
| 218 | template <class Operation, class T> |
| 219 | binder1st<Operation> bind1st(const Operation& op, const T& x); |
| 220 | |
| 221 | template <class Operation> |
| 222 | class binder2nd |
| 223 | : public unary_function<typename Operation::first_argument_type, |
| 224 | typename Operation::result_type> |
| 225 | { |
| 226 | protected: |
| 227 | Operation op; |
| 228 | typename Operation::second_argument_type value; |
| 229 | public: |
| 230 | binder2nd(const Operation& x, const typename Operation::second_argument_type y); |
| 231 | typename Operation::result_type operator()( typename Operation::first_argument_type& x) const; |
| 232 | typename Operation::result_type operator()(const typename Operation::first_argument_type& x) const; |
| 233 | }; |
| 234 | |
| 235 | template <class Operation, class T> |
| 236 | binder2nd<Operation> bind2nd(const Operation& op, const T& x); |
| 237 | |
| 238 | template <class Arg, class Result> |
| 239 | class pointer_to_unary_function : public unary_function<Arg, Result> |
| 240 | { |
| 241 | public: |
| 242 | explicit pointer_to_unary_function(Result (*f)(Arg)); |
| 243 | Result operator()(Arg x) const; |
| 244 | }; |
| 245 | |
| 246 | template <class Arg, class Result> |
| 247 | pointer_to_unary_function<Arg,Result> ptr_fun(Result (*f)(Arg)); |
| 248 | |
| 249 | template <class Arg1, class Arg2, class Result> |
| 250 | class pointer_to_binary_function : public binary_function<Arg1, Arg2, Result> |
| 251 | { |
| 252 | public: |
| 253 | explicit pointer_to_binary_function(Result (*f)(Arg1, Arg2)); |
| 254 | Result operator()(Arg1 x, Arg2 y) const; |
| 255 | }; |
| 256 | |
| 257 | template <class Arg1, class Arg2, class Result> |
| 258 | pointer_to_binary_function<Arg1,Arg2,Result> ptr_fun(Result (*f)(Arg1,Arg2)); |
| 259 | |
| 260 | template<class S, class T> |
| 261 | class mem_fun_t : public unary_function<T*, S> |
| 262 | { |
| 263 | public: |
| 264 | explicit mem_fun_t(S (T::*p)()); |
| 265 | S operator()(T* p) const; |
| 266 | }; |
| 267 | |
| 268 | template<class S, class T, class A> |
| 269 | class mem_fun1_t : public binary_function<T*, A, S> |
| 270 | { |
| 271 | public: |
| 272 | explicit mem_fun1_t(S (T::*p)(A)); |
| 273 | S operator()(T* p, A x) const; |
| 274 | }; |
| 275 | |
| 276 | template<class S, class T> mem_fun_t<S,T> mem_fun(S (T::*f)()); |
| 277 | template<class S, class T, class A> mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A)); |
| 278 | |
| 279 | template<class S, class T> |
| 280 | class mem_fun_ref_t : public unary_function<T, S> |
| 281 | { |
| 282 | public: |
| 283 | explicit mem_fun_ref_t(S (T::*p)()); |
| 284 | S operator()(T& p) const; |
| 285 | }; |
| 286 | |
| 287 | template<class S, class T, class A> |
| 288 | class mem_fun1_ref_t : public binary_function<T, A, S> |
| 289 | { |
| 290 | public: |
| 291 | explicit mem_fun1_ref_t(S (T::*p)(A)); |
| 292 | S operator()(T& p, A x) const; |
| 293 | }; |
| 294 | |
| 295 | template<class S, class T> mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)()); |
| 296 | template<class S, class T, class A> mem_fun1_ref_t<S,T,A> mem_fun_ref(S (T::*f)(A)); |
| 297 | |
| 298 | template <class S, class T> |
| 299 | class const_mem_fun_t : public unary_function<const T*, S> |
| 300 | { |
| 301 | public: |
| 302 | explicit const_mem_fun_t(S (T::*p)() const); |
| 303 | S operator()(const T* p) const; |
| 304 | }; |
| 305 | |
| 306 | template <class S, class T, class A> |
| 307 | class const_mem_fun1_t : public binary_function<const T*, A, S> |
| 308 | { |
| 309 | public: |
| 310 | explicit const_mem_fun1_t(S (T::*p)(A) const); |
| 311 | S operator()(const T* p, A x) const; |
| 312 | }; |
| 313 | |
| 314 | template <class S, class T> const_mem_fun_t<S,T> mem_fun(S (T::*f)() const); |
| 315 | template <class S, class T, class A> const_mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A) const); |
| 316 | |
| 317 | template <class S, class T> |
| 318 | class const_mem_fun_ref_t : public unary_function<T, S> |
| 319 | { |
| 320 | public: |
| 321 | explicit const_mem_fun_ref_t(S (T::*p)() const); |
| 322 | S operator()(const T& p) const; |
| 323 | }; |
| 324 | |
| 325 | template <class S, class T, class A> |
| 326 | class const_mem_fun1_ref_t : public binary_function<T, A, S> |
| 327 | { |
| 328 | public: |
| 329 | explicit const_mem_fun1_ref_t(S (T::*p)(A) const); |
| 330 | S operator()(const T& p, A x) const; |
| 331 | }; |
| 332 | |
| 333 | template <class S, class T> const_mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)() const); |
| 334 | template <class S, class T, class A> const_mem_fun1_ref_t<S,T,A> mem_fun_ref(S (T::*f)(A) const); |
| 335 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 336 | template<class R, class T> unspecified mem_fn(R T::*); |
| 337 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...)); |
| 338 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const); |
| 339 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) volatile); |
| 340 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const volatile); |
| 341 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) &); |
| 342 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const &); |
| 343 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) volatile &); |
| 344 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const volatile &); |
| 345 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) &&); |
| 346 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const &&); |
| 347 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) volatile &&); |
| 348 | template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const volatile &&); |
| 349 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 350 | class bad_function_call |
| 351 | : public exception |
| 352 | { |
| 353 | }; |
| 354 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 355 | template<class> class function; // undefined |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 356 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 357 | template<class R, class... ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 358 | class function<R(ArgTypes...)> |
| 359 | : public unary_function<T1, R> // iff sizeof...(ArgTypes) == 1 and |
| 360 | // ArgTypes contains T1 |
| 361 | : public binary_function<T1, T2, R> // iff sizeof...(ArgTypes) == 2 and |
| 362 | // ArgTypes contains T1 and T2 |
| 363 | { |
| 364 | public: |
| 365 | typedef R result_type; |
| 366 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 367 | // construct/copy/destroy: |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 368 | function() noexcept; |
| 369 | function(nullptr_t) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 370 | function(const function&); |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 371 | function(function&&) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 372 | template<class F> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 373 | function(F); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 374 | template<Allocator Alloc> |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 375 | function(allocator_arg_t, const Alloc&) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 376 | template<Allocator Alloc> |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 377 | function(allocator_arg_t, const Alloc&, nullptr_t) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 378 | template<Allocator Alloc> |
| 379 | function(allocator_arg_t, const Alloc&, const function&); |
| 380 | template<Allocator Alloc> |
| 381 | function(allocator_arg_t, const Alloc&, function&&); |
| 382 | template<class F, Allocator Alloc> |
| 383 | function(allocator_arg_t, const Alloc&, F); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 384 | |
| 385 | function& operator=(const function&); |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 386 | function& operator=(function&&) noexcept; |
Howard Hinnant | ad1a5cc | 2011-05-29 13:53:56 +0000 | [diff] [blame] | 387 | function& operator=(nullptr_t) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 388 | template<class F> |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 389 | function& operator=(F&&); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 390 | template<class F> |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 391 | function& operator=(reference_wrapper<F>) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 392 | |
| 393 | ~function(); |
| 394 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 395 | // function modifiers: |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 396 | void swap(function&) noexcept; |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 397 | template<class F, class Alloc> |
| 398 | void assign(F&&, const Alloc&); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 399 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 400 | // function capacity: |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 401 | explicit operator bool() const noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 402 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 403 | // function invocation: |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 404 | R operator()(ArgTypes...) const; |
| 405 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 406 | // function target access: |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 407 | const std::type_info& target_type() const noexcept; |
| 408 | template <typename T> T* target() noexcept; |
| 409 | template <typename T> const T* target() const noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 410 | }; |
| 411 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 412 | // Null pointer comparisons: |
| 413 | template <class R, class ... ArgTypes> |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 414 | bool operator==(const function<R(ArgTypes...)>&, nullptr_t) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 415 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 416 | template <class R, class ... ArgTypes> |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 417 | bool operator==(nullptr_t, const function<R(ArgTypes...)>&) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 418 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 419 | template <class R, class ... ArgTypes> |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 420 | bool operator!=(const function<R(ArgTypes...)>&, nullptr_t) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 421 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 422 | template <class R, class ... ArgTypes> |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 423 | bool operator!=(nullptr_t, const function<R(ArgTypes...)>&) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 424 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 425 | // specialized algorithms: |
| 426 | template <class R, class ... ArgTypes> |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 427 | void swap(function<R(ArgTypes...)>&, function<R(ArgTypes...)>&) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 428 | |
| 429 | template <class T> struct hash; |
| 430 | |
| 431 | template <> struct hash<bool>; |
| 432 | template <> struct hash<char>; |
| 433 | template <> struct hash<signed char>; |
| 434 | template <> struct hash<unsigned char>; |
| 435 | template <> struct hash<char16_t>; |
| 436 | template <> struct hash<char32_t>; |
| 437 | template <> struct hash<wchar_t>; |
| 438 | template <> struct hash<short>; |
| 439 | template <> struct hash<unsigned short>; |
| 440 | template <> struct hash<int>; |
| 441 | template <> struct hash<unsigned int>; |
| 442 | template <> struct hash<long>; |
| 443 | template <> struct hash<long long>; |
| 444 | template <> struct hash<unsigned long>; |
| 445 | template <> struct hash<unsigned long long>; |
| 446 | |
| 447 | template <> struct hash<float>; |
| 448 | template <> struct hash<double>; |
| 449 | template <> struct hash<long double>; |
| 450 | |
| 451 | template<class T> struct hash<T*>; |
| 452 | |
| 453 | } // std |
| 454 | |
| 455 | POLICY: For non-variadic implementations, the number of arguments is limited |
| 456 | to 3. It is hoped that the need for non-variadic implementations |
| 457 | will be minimal. |
| 458 | |
| 459 | */ |
| 460 | |
| 461 | #include <__config> |
| 462 | #include <type_traits> |
| 463 | #include <typeinfo> |
| 464 | #include <exception> |
| 465 | #include <memory> |
| 466 | #include <tuple> |
| 467 | |
| 468 | #include <__functional_base> |
| 469 | |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 470 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 471 | #pragma GCC system_header |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 472 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 473 | |
| 474 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 475 | |
| 476 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 477 | struct _LIBCPP_VISIBLE plus : binary_function<_Tp, _Tp, _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 478 | { |
| 479 | _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const |
| 480 | {return __x + __y;} |
| 481 | }; |
| 482 | |
| 483 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 484 | struct _LIBCPP_VISIBLE minus : binary_function<_Tp, _Tp, _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 485 | { |
| 486 | _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const |
| 487 | {return __x - __y;} |
| 488 | }; |
| 489 | |
| 490 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 491 | struct _LIBCPP_VISIBLE multiplies : binary_function<_Tp, _Tp, _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 492 | { |
| 493 | _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const |
| 494 | {return __x * __y;} |
| 495 | }; |
| 496 | |
| 497 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 498 | struct _LIBCPP_VISIBLE divides : binary_function<_Tp, _Tp, _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 499 | { |
| 500 | _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const |
| 501 | {return __x / __y;} |
| 502 | }; |
| 503 | |
| 504 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 505 | struct _LIBCPP_VISIBLE modulus : binary_function<_Tp, _Tp, _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 506 | { |
| 507 | _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const |
| 508 | {return __x % __y;} |
| 509 | }; |
| 510 | |
| 511 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 512 | struct _LIBCPP_VISIBLE negate : unary_function<_Tp, _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 513 | { |
| 514 | _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x) const |
| 515 | {return -__x;} |
| 516 | }; |
| 517 | |
| 518 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 519 | struct _LIBCPP_VISIBLE equal_to : binary_function<_Tp, _Tp, bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 520 | { |
| 521 | _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const |
| 522 | {return __x == __y;} |
| 523 | }; |
| 524 | |
| 525 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 526 | struct _LIBCPP_VISIBLE not_equal_to : binary_function<_Tp, _Tp, bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 527 | { |
| 528 | _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const |
| 529 | {return __x != __y;} |
| 530 | }; |
| 531 | |
| 532 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 533 | struct _LIBCPP_VISIBLE greater : binary_function<_Tp, _Tp, bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 534 | { |
| 535 | _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const |
| 536 | {return __x > __y;} |
| 537 | }; |
| 538 | |
| 539 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 540 | struct _LIBCPP_VISIBLE less : binary_function<_Tp, _Tp, bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 541 | { |
| 542 | _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const |
| 543 | {return __x < __y;} |
| 544 | }; |
| 545 | |
| 546 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 547 | struct _LIBCPP_VISIBLE greater_equal : binary_function<_Tp, _Tp, bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 548 | { |
| 549 | _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const |
| 550 | {return __x >= __y;} |
| 551 | }; |
| 552 | |
| 553 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 554 | struct _LIBCPP_VISIBLE less_equal : binary_function<_Tp, _Tp, bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 555 | { |
| 556 | _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const |
| 557 | {return __x <= __y;} |
| 558 | }; |
| 559 | |
| 560 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 561 | struct _LIBCPP_VISIBLE logical_and : binary_function<_Tp, _Tp, bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 562 | { |
| 563 | _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const |
| 564 | {return __x && __y;} |
| 565 | }; |
| 566 | |
| 567 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 568 | struct _LIBCPP_VISIBLE logical_or : binary_function<_Tp, _Tp, bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 569 | { |
| 570 | _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const |
| 571 | {return __x || __y;} |
| 572 | }; |
| 573 | |
| 574 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 575 | struct _LIBCPP_VISIBLE logical_not : unary_function<_Tp, bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 576 | { |
| 577 | _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x) const |
| 578 | {return !__x;} |
| 579 | }; |
| 580 | |
| 581 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 582 | struct _LIBCPP_VISIBLE bit_and : binary_function<_Tp, _Tp, _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 583 | { |
| 584 | _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const |
| 585 | {return __x & __y;} |
| 586 | }; |
| 587 | |
| 588 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 589 | struct _LIBCPP_VISIBLE bit_or : binary_function<_Tp, _Tp, _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 590 | { |
| 591 | _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const |
| 592 | {return __x | __y;} |
| 593 | }; |
| 594 | |
| 595 | template <class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 596 | struct _LIBCPP_VISIBLE bit_xor : binary_function<_Tp, _Tp, _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 597 | { |
| 598 | _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const |
| 599 | {return __x ^ __y;} |
| 600 | }; |
| 601 | |
| 602 | template <class _Predicate> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 603 | class _LIBCPP_VISIBLE unary_negate |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 604 | : public unary_function<typename _Predicate::argument_type, bool> |
| 605 | { |
| 606 | _Predicate __pred_; |
| 607 | public: |
| 608 | _LIBCPP_INLINE_VISIBILITY explicit unary_negate(const _Predicate& __pred) |
| 609 | : __pred_(__pred) {} |
| 610 | _LIBCPP_INLINE_VISIBILITY bool operator()(const typename _Predicate::argument_type& __x) const |
| 611 | {return !__pred_(__x);} |
| 612 | }; |
| 613 | |
| 614 | template <class _Predicate> |
| 615 | inline _LIBCPP_INLINE_VISIBILITY |
| 616 | unary_negate<_Predicate> |
| 617 | not1(const _Predicate& __pred) {return unary_negate<_Predicate>(__pred);} |
| 618 | |
| 619 | template <class _Predicate> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 620 | class _LIBCPP_VISIBLE binary_negate |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 621 | : public binary_function<typename _Predicate::first_argument_type, |
| 622 | typename _Predicate::second_argument_type, |
| 623 | bool> |
| 624 | { |
| 625 | _Predicate __pred_; |
| 626 | public: |
| 627 | _LIBCPP_INLINE_VISIBILITY explicit binary_negate(const _Predicate& __pred) |
| 628 | : __pred_(__pred) {} |
| 629 | _LIBCPP_INLINE_VISIBILITY bool operator()(const typename _Predicate::first_argument_type& __x, |
| 630 | const typename _Predicate::second_argument_type& __y) const |
| 631 | {return !__pred_(__x, __y);} |
| 632 | }; |
| 633 | |
| 634 | template <class _Predicate> |
| 635 | inline _LIBCPP_INLINE_VISIBILITY |
| 636 | binary_negate<_Predicate> |
| 637 | not2(const _Predicate& __pred) {return binary_negate<_Predicate>(__pred);} |
| 638 | |
| 639 | template <class __Operation> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 640 | class _LIBCPP_VISIBLE binder1st |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 641 | : public unary_function<typename __Operation::second_argument_type, |
| 642 | typename __Operation::result_type> |
| 643 | { |
| 644 | protected: |
| 645 | __Operation op; |
| 646 | typename __Operation::first_argument_type value; |
| 647 | public: |
| 648 | _LIBCPP_INLINE_VISIBILITY binder1st(const __Operation& __x, |
| 649 | const typename __Operation::first_argument_type __y) |
| 650 | : op(__x), value(__y) {} |
| 651 | _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator() |
| 652 | (typename __Operation::second_argument_type& __x) const |
| 653 | {return op(value, __x);} |
| 654 | _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator() |
| 655 | (const typename __Operation::second_argument_type& __x) const |
| 656 | {return op(value, __x);} |
| 657 | }; |
| 658 | |
| 659 | template <class __Operation, class _Tp> |
| 660 | inline _LIBCPP_INLINE_VISIBILITY |
| 661 | binder1st<__Operation> |
| 662 | bind1st(const __Operation& __op, const _Tp& __x) |
| 663 | {return binder1st<__Operation>(__op, __x);} |
| 664 | |
| 665 | template <class __Operation> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 666 | class _LIBCPP_VISIBLE binder2nd |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 667 | : public unary_function<typename __Operation::first_argument_type, |
| 668 | typename __Operation::result_type> |
| 669 | { |
| 670 | protected: |
| 671 | __Operation op; |
| 672 | typename __Operation::second_argument_type value; |
| 673 | public: |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 674 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 675 | binder2nd(const __Operation& __x, const typename __Operation::second_argument_type __y) |
| 676 | : op(__x), value(__y) {} |
| 677 | _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator() |
| 678 | ( typename __Operation::first_argument_type& __x) const |
| 679 | {return op(__x, value);} |
| 680 | _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator() |
| 681 | (const typename __Operation::first_argument_type& __x) const |
| 682 | {return op(__x, value);} |
| 683 | }; |
| 684 | |
| 685 | template <class __Operation, class _Tp> |
| 686 | inline _LIBCPP_INLINE_VISIBILITY |
| 687 | binder2nd<__Operation> |
| 688 | bind2nd(const __Operation& __op, const _Tp& __x) |
| 689 | {return binder2nd<__Operation>(__op, __x);} |
| 690 | |
| 691 | template <class _Arg, class _Result> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 692 | class _LIBCPP_VISIBLE pointer_to_unary_function |
| 693 | : public unary_function<_Arg, _Result> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 694 | { |
| 695 | _Result (*__f_)(_Arg); |
| 696 | public: |
| 697 | _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg)) |
| 698 | : __f_(__f) {} |
| 699 | _LIBCPP_INLINE_VISIBILITY _Result operator()(_Arg __x) const |
| 700 | {return __f_(__x);} |
| 701 | }; |
| 702 | |
| 703 | template <class _Arg, class _Result> |
| 704 | inline _LIBCPP_INLINE_VISIBILITY |
| 705 | pointer_to_unary_function<_Arg,_Result> |
| 706 | ptr_fun(_Result (*__f)(_Arg)) |
| 707 | {return pointer_to_unary_function<_Arg,_Result>(__f);} |
| 708 | |
| 709 | template <class _Arg1, class _Arg2, class _Result> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 710 | class _LIBCPP_VISIBLE pointer_to_binary_function |
| 711 | : public binary_function<_Arg1, _Arg2, _Result> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 712 | { |
| 713 | _Result (*__f_)(_Arg1, _Arg2); |
| 714 | public: |
| 715 | _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2)) |
| 716 | : __f_(__f) {} |
| 717 | _LIBCPP_INLINE_VISIBILITY _Result operator()(_Arg1 __x, _Arg2 __y) const |
| 718 | {return __f_(__x, __y);} |
| 719 | }; |
| 720 | |
| 721 | template <class _Arg1, class _Arg2, class _Result> |
| 722 | inline _LIBCPP_INLINE_VISIBILITY |
| 723 | pointer_to_binary_function<_Arg1,_Arg2,_Result> |
| 724 | ptr_fun(_Result (*__f)(_Arg1,_Arg2)) |
| 725 | {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);} |
| 726 | |
| 727 | template<class _Sp, class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 728 | class _LIBCPP_VISIBLE mem_fun_t : public unary_function<_Tp*, _Sp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 729 | { |
| 730 | _Sp (_Tp::*__p_)(); |
| 731 | public: |
| 732 | _LIBCPP_INLINE_VISIBILITY explicit mem_fun_t(_Sp (_Tp::*__p)()) |
| 733 | : __p_(__p) {} |
| 734 | _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp* __p) const |
| 735 | {return (__p->*__p_)();} |
| 736 | }; |
| 737 | |
| 738 | template<class _Sp, class _Tp, class _Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 739 | class _LIBCPP_VISIBLE mem_fun1_t : public binary_function<_Tp*, _Ap, _Sp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 740 | { |
| 741 | _Sp (_Tp::*__p_)(_Ap); |
| 742 | public: |
| 743 | _LIBCPP_INLINE_VISIBILITY explicit mem_fun1_t(_Sp (_Tp::*__p)(_Ap)) |
| 744 | : __p_(__p) {} |
| 745 | _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp* __p, _Ap __x) const |
| 746 | {return (__p->*__p_)(__x);} |
| 747 | }; |
| 748 | |
| 749 | template<class _Sp, class _Tp> |
| 750 | inline _LIBCPP_INLINE_VISIBILITY |
| 751 | mem_fun_t<_Sp,_Tp> |
| 752 | mem_fun(_Sp (_Tp::*__f)()) |
| 753 | {return mem_fun_t<_Sp,_Tp>(__f);} |
| 754 | |
| 755 | template<class _Sp, class _Tp, class _Ap> |
| 756 | inline _LIBCPP_INLINE_VISIBILITY |
| 757 | mem_fun1_t<_Sp,_Tp,_Ap> |
| 758 | mem_fun(_Sp (_Tp::*__f)(_Ap)) |
| 759 | {return mem_fun1_t<_Sp,_Tp,_Ap>(__f);} |
| 760 | |
| 761 | template<class _Sp, class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 762 | class _LIBCPP_VISIBLE mem_fun_ref_t : public unary_function<_Tp, _Sp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 763 | { |
| 764 | _Sp (_Tp::*__p_)(); |
| 765 | public: |
| 766 | _LIBCPP_INLINE_VISIBILITY explicit mem_fun_ref_t(_Sp (_Tp::*__p)()) |
| 767 | : __p_(__p) {} |
| 768 | _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp& __p) const |
| 769 | {return (__p.*__p_)();} |
| 770 | }; |
| 771 | |
| 772 | template<class _Sp, class _Tp, class _Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 773 | class _LIBCPP_VISIBLE mem_fun1_ref_t : public binary_function<_Tp, _Ap, _Sp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 774 | { |
| 775 | _Sp (_Tp::*__p_)(_Ap); |
| 776 | public: |
| 777 | _LIBCPP_INLINE_VISIBILITY explicit mem_fun1_ref_t(_Sp (_Tp::*__p)(_Ap)) |
| 778 | : __p_(__p) {} |
| 779 | _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp& __p, _Ap __x) const |
| 780 | {return (__p.*__p_)(__x);} |
| 781 | }; |
| 782 | |
| 783 | template<class _Sp, class _Tp> |
| 784 | inline _LIBCPP_INLINE_VISIBILITY |
| 785 | mem_fun_ref_t<_Sp,_Tp> |
| 786 | mem_fun_ref(_Sp (_Tp::*__f)()) |
| 787 | {return mem_fun_ref_t<_Sp,_Tp>(__f);} |
| 788 | |
| 789 | template<class _Sp, class _Tp, class _Ap> |
| 790 | inline _LIBCPP_INLINE_VISIBILITY |
| 791 | mem_fun1_ref_t<_Sp,_Tp,_Ap> |
| 792 | mem_fun_ref(_Sp (_Tp::*__f)(_Ap)) |
| 793 | {return mem_fun1_ref_t<_Sp,_Tp,_Ap>(__f);} |
| 794 | |
| 795 | template <class _Sp, class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 796 | class _LIBCPP_VISIBLE const_mem_fun_t : public unary_function<const _Tp*, _Sp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 797 | { |
| 798 | _Sp (_Tp::*__p_)() const; |
| 799 | public: |
| 800 | _LIBCPP_INLINE_VISIBILITY explicit const_mem_fun_t(_Sp (_Tp::*__p)() const) |
| 801 | : __p_(__p) {} |
| 802 | _LIBCPP_INLINE_VISIBILITY _Sp operator()(const _Tp* __p) const |
| 803 | {return (__p->*__p_)();} |
| 804 | }; |
| 805 | |
| 806 | template <class _Sp, class _Tp, class _Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 807 | class _LIBCPP_VISIBLE const_mem_fun1_t : public binary_function<const _Tp*, _Ap, _Sp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 808 | { |
| 809 | _Sp (_Tp::*__p_)(_Ap) const; |
| 810 | public: |
| 811 | _LIBCPP_INLINE_VISIBILITY explicit const_mem_fun1_t(_Sp (_Tp::*__p)(_Ap) const) |
| 812 | : __p_(__p) {} |
| 813 | _LIBCPP_INLINE_VISIBILITY _Sp operator()(const _Tp* __p, _Ap __x) const |
| 814 | {return (__p->*__p_)(__x);} |
| 815 | }; |
| 816 | |
| 817 | template <class _Sp, class _Tp> |
| 818 | inline _LIBCPP_INLINE_VISIBILITY |
| 819 | const_mem_fun_t<_Sp,_Tp> |
| 820 | mem_fun(_Sp (_Tp::*__f)() const) |
| 821 | {return const_mem_fun_t<_Sp,_Tp>(__f);} |
| 822 | |
| 823 | template <class _Sp, class _Tp, class _Ap> |
| 824 | inline _LIBCPP_INLINE_VISIBILITY |
| 825 | const_mem_fun1_t<_Sp,_Tp,_Ap> |
| 826 | mem_fun(_Sp (_Tp::*__f)(_Ap) const) |
| 827 | {return const_mem_fun1_t<_Sp,_Tp,_Ap>(__f);} |
| 828 | |
| 829 | template <class _Sp, class _Tp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 830 | class _LIBCPP_VISIBLE const_mem_fun_ref_t : public unary_function<_Tp, _Sp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 831 | { |
| 832 | _Sp (_Tp::*__p_)() const; |
| 833 | public: |
| 834 | _LIBCPP_INLINE_VISIBILITY explicit const_mem_fun_ref_t(_Sp (_Tp::*__p)() const) |
| 835 | : __p_(__p) {} |
| 836 | _LIBCPP_INLINE_VISIBILITY _Sp operator()(const _Tp& __p) const |
| 837 | {return (__p.*__p_)();} |
| 838 | }; |
| 839 | |
| 840 | template <class _Sp, class _Tp, class _Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 841 | class _LIBCPP_VISIBLE const_mem_fun1_ref_t |
| 842 | : public binary_function<_Tp, _Ap, _Sp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 843 | { |
| 844 | _Sp (_Tp::*__p_)(_Ap) const; |
| 845 | public: |
| 846 | _LIBCPP_INLINE_VISIBILITY explicit const_mem_fun1_ref_t(_Sp (_Tp::*__p)(_Ap) const) |
| 847 | : __p_(__p) {} |
| 848 | _LIBCPP_INLINE_VISIBILITY _Sp operator()(const _Tp& __p, _Ap __x) const |
| 849 | {return (__p.*__p_)(__x);} |
| 850 | }; |
| 851 | |
| 852 | template <class _Sp, class _Tp> |
| 853 | inline _LIBCPP_INLINE_VISIBILITY |
| 854 | const_mem_fun_ref_t<_Sp,_Tp> |
| 855 | mem_fun_ref(_Sp (_Tp::*__f)() const) |
| 856 | {return const_mem_fun_ref_t<_Sp,_Tp>(__f);} |
| 857 | |
| 858 | template <class _Sp, class _Tp, class _Ap> |
| 859 | inline _LIBCPP_INLINE_VISIBILITY |
| 860 | const_mem_fun1_ref_t<_Sp,_Tp,_Ap> |
| 861 | mem_fun_ref(_Sp (_Tp::*__f)(_Ap) const) |
| 862 | {return const_mem_fun1_ref_t<_Sp,_Tp,_Ap>(__f);} |
| 863 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 864 | #ifdef _LIBCPP_HAS_NO_VARIADICS |
| 865 | |
| 866 | #include <__functional_03> |
| 867 | |
| 868 | #else // _LIBCPP_HAS_NO_VARIADICS |
| 869 | |
| 870 | template <class _Tp> |
| 871 | class __mem_fn |
| 872 | : public __weak_result_type<_Tp> |
| 873 | { |
| 874 | public: |
| 875 | // types |
| 876 | typedef _Tp type; |
| 877 | private: |
| 878 | type __f_; |
| 879 | |
| 880 | public: |
| 881 | _LIBCPP_INLINE_VISIBILITY __mem_fn(type __f) : __f_(__f) {} |
| 882 | |
| 883 | // invoke |
| 884 | template <class... _ArgTypes> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 885 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 886 | typename __invoke_return<type, _ArgTypes...>::type |
| 887 | operator() (_ArgTypes&&... __args) |
| 888 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 889 | return __invoke(__f_, _VSTD::forward<_ArgTypes>(__args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 890 | } |
| 891 | }; |
| 892 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 893 | template<class _Rp, class _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 894 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 895 | __mem_fn<_Rp _Tp::*> |
| 896 | mem_fn(_Rp _Tp::* __pm) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 897 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 898 | return __mem_fn<_Rp _Tp::*>(__pm); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 899 | } |
| 900 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 901 | template<class _Rp, class _Tp, class ..._Args> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 902 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 903 | __mem_fn<_Rp (_Tp::*)(_Args...)> |
| 904 | mem_fn(_Rp (_Tp::* __pm)(_Args...)) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 905 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 906 | return __mem_fn<_Rp (_Tp::*)(_Args...)>(__pm); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 907 | } |
| 908 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 909 | template<class _Rp, class _Tp, class ..._Args> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 910 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 911 | __mem_fn<_Rp (_Tp::*)(_Args...) const> |
| 912 | mem_fn(_Rp (_Tp::* __pm)(_Args...) const) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 913 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 914 | return __mem_fn<_Rp (_Tp::*)(_Args...) const>(__pm); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 915 | } |
| 916 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 917 | template<class _Rp, class _Tp, class ..._Args> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 918 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 919 | __mem_fn<_Rp (_Tp::*)(_Args...) volatile> |
| 920 | mem_fn(_Rp (_Tp::* __pm)(_Args...) volatile) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 921 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 922 | return __mem_fn<_Rp (_Tp::*)(_Args...) volatile>(__pm); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 923 | } |
| 924 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 925 | template<class _Rp, class _Tp, class ..._Args> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 926 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 927 | __mem_fn<_Rp (_Tp::*)(_Args...) const volatile> |
| 928 | mem_fn(_Rp (_Tp::* __pm)(_Args...) const volatile) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 929 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 930 | return __mem_fn<_Rp (_Tp::*)(_Args...) const volatile>(__pm); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 931 | } |
| 932 | |
| 933 | // bad_function_call |
| 934 | |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 935 | class _LIBCPP_EXCEPTION_ABI bad_function_call |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 936 | : public exception |
| 937 | { |
| 938 | }; |
| 939 | |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 940 | template<class _Fp> class _LIBCPP_VISIBLE function; // undefined |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 941 | |
| 942 | namespace __function |
| 943 | { |
| 944 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 945 | template<class _Rp, class ..._ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 946 | struct __maybe_derive_from_unary_function |
| 947 | { |
| 948 | }; |
| 949 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 950 | template<class _Rp, class _A1> |
| 951 | struct __maybe_derive_from_unary_function<_Rp(_A1)> |
| 952 | : public unary_function<_A1, _Rp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 953 | { |
| 954 | }; |
| 955 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 956 | template<class _Rp, class ..._ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 957 | struct __maybe_derive_from_binary_function |
| 958 | { |
| 959 | }; |
| 960 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 961 | template<class _Rp, class _A1, class _A2> |
| 962 | struct __maybe_derive_from_binary_function<_Rp(_A1, _A2)> |
| 963 | : public binary_function<_A1, _A2, _Rp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 964 | { |
| 965 | }; |
| 966 | |
| 967 | template<class _Fp> class __base; |
| 968 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 969 | template<class _Rp, class ..._ArgTypes> |
| 970 | class __base<_Rp(_ArgTypes...)> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 971 | { |
| 972 | __base(const __base&); |
| 973 | __base& operator=(const __base&); |
| 974 | public: |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 975 | _LIBCPP_INLINE_VISIBILITY __base() {} |
| 976 | _LIBCPP_INLINE_VISIBILITY virtual ~__base() {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 977 | virtual __base* __clone() const = 0; |
| 978 | virtual void __clone(__base*) const = 0; |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 979 | virtual void destroy() _NOEXCEPT = 0; |
| 980 | virtual void destroy_deallocate() _NOEXCEPT = 0; |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 981 | virtual _Rp operator()(_ArgTypes&& ...) = 0; |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 982 | #ifndef _LIBCPP_NO_RTTI |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 983 | virtual const void* target(const type_info&) const _NOEXCEPT = 0; |
| 984 | virtual const std::type_info& target_type() const _NOEXCEPT = 0; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 985 | #endif // _LIBCPP_NO_RTTI |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 986 | }; |
| 987 | |
| 988 | template<class _FD, class _Alloc, class _FB> class __func; |
| 989 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 990 | template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes> |
| 991 | class __func<_Fp, _Alloc, _Rp(_ArgTypes...)> |
| 992 | : public __base<_Rp(_ArgTypes...)> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 993 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 994 | __compressed_pair<_Fp, _Alloc> __f_; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 995 | public: |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 996 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 997 | explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 998 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 999 | explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} |
| 1000 | virtual __base<_Rp(_ArgTypes...)>* __clone() const; |
| 1001 | virtual void __clone(__base<_Rp(_ArgTypes...)>*) const; |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1002 | virtual void destroy() _NOEXCEPT; |
| 1003 | virtual void destroy_deallocate() _NOEXCEPT; |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1004 | virtual _Rp operator()(_ArgTypes&& ... __arg); |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 1005 | #ifndef _LIBCPP_NO_RTTI |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1006 | virtual const void* target(const type_info&) const _NOEXCEPT; |
| 1007 | virtual const std::type_info& target_type() const _NOEXCEPT; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1008 | #endif // _LIBCPP_NO_RTTI |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1009 | }; |
| 1010 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1011 | template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes> |
| 1012 | __base<_Rp(_ArgTypes...)>* |
| 1013 | __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::__clone() const |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1014 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1015 | typedef typename _Alloc::template rebind<__func>::other _Ap; |
| 1016 | _Ap __a(__f_.second()); |
| 1017 | typedef __allocator_destructor<_Ap> _Dp; |
| 1018 | unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1019 | ::new (__hold.get()) __func(__f_.first(), _Alloc(__a)); |
| 1020 | return __hold.release(); |
| 1021 | } |
| 1022 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1023 | template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1024 | void |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1025 | __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::__clone(__base<_Rp(_ArgTypes...)>* __p) const |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1026 | { |
| 1027 | ::new (__p) __func(__f_.first(), __f_.second()); |
| 1028 | } |
| 1029 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1030 | template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1031 | void |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1032 | __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::destroy() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1033 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1034 | __f_.~__compressed_pair<_Fp, _Alloc>(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1035 | } |
| 1036 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1037 | template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1038 | void |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1039 | __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::destroy_deallocate() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1040 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1041 | typedef typename _Alloc::template rebind<__func>::other _Ap; |
| 1042 | _Ap __a(__f_.second()); |
| 1043 | __f_.~__compressed_pair<_Fp, _Alloc>(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1044 | __a.deallocate(this, 1); |
| 1045 | } |
| 1046 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1047 | template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes> |
| 1048 | _Rp |
| 1049 | __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::operator()(_ArgTypes&& ... __arg) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1050 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1051 | return __invoke(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1052 | } |
| 1053 | |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 1054 | #ifndef _LIBCPP_NO_RTTI |
| 1055 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1056 | template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1057 | const void* |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1058 | __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::target(const type_info& __ti) const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1059 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1060 | if (__ti == typeid(_Fp)) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1061 | return &__f_.first(); |
| 1062 | return (const void*)0; |
| 1063 | } |
| 1064 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1065 | template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1066 | const std::type_info& |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1067 | __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::target_type() const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1068 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1069 | return typeid(_Fp); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1070 | } |
| 1071 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1072 | #endif // _LIBCPP_NO_RTTI |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 1073 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1074 | } // __function |
| 1075 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1076 | template<class _Rp, class ..._ArgTypes> |
| 1077 | class _LIBCPP_VISIBLE function<_Rp(_ArgTypes...)> |
| 1078 | : public __function::__maybe_derive_from_unary_function<_Rp(_ArgTypes...)>, |
| 1079 | public __function::__maybe_derive_from_binary_function<_Rp(_ArgTypes...)> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1080 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1081 | typedef __function::__base<_Rp(_ArgTypes...)> __base; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1082 | aligned_storage<3*sizeof(void*)>::type __buf_; |
| 1083 | __base* __f_; |
| 1084 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1085 | template <class _Fp> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1086 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1087 | static bool __not_null(const _Fp&) {return true;} |
| 1088 | template <class _R2, class ..._Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1089 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1090 | static bool __not_null(_R2 (*__p)(_Ap...)) {return __p;} |
| 1091 | template <class _R2, class _Cp, class ..._Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1092 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1093 | static bool __not_null(_R2 (_Cp::*__p)(_Ap...)) {return __p;} |
| 1094 | template <class _R2, class _Cp, class ..._Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1095 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1096 | static bool __not_null(_R2 (_Cp::*__p)(_Ap...) const) {return __p;} |
| 1097 | template <class _R2, class _Cp, class ..._Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1098 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1099 | static bool __not_null(_R2 (_Cp::*__p)(_Ap...) volatile) {return __p;} |
| 1100 | template <class _R2, class _Cp, class ..._Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1101 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1102 | static bool __not_null(_R2 (_Cp::*__p)(_Ap...) const volatile) {return __p;} |
| 1103 | template <class _R2, class ..._Ap> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1104 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1105 | static bool __not_null(const function<_Rp(_Ap...)>& __p) {return __p;} |
Howard Hinnant | 083ba5f | 2011-05-31 21:45:26 +0000 | [diff] [blame] | 1106 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1107 | template <class _Fp, bool = __invokable<_Fp&, _ArgTypes...>::value> |
Howard Hinnant | 083ba5f | 2011-05-31 21:45:26 +0000 | [diff] [blame] | 1108 | struct __callable; |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1109 | template <class _Fp> |
| 1110 | struct __callable<_Fp, true> |
Howard Hinnant | 083ba5f | 2011-05-31 21:45:26 +0000 | [diff] [blame] | 1111 | { |
| 1112 | static const bool value = |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1113 | is_convertible<typename __invoke_of<_Fp&, _ArgTypes...>::type, |
| 1114 | _Rp>::value; |
Howard Hinnant | 083ba5f | 2011-05-31 21:45:26 +0000 | [diff] [blame] | 1115 | }; |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1116 | template <class _Fp> |
| 1117 | struct __callable<_Fp, false> |
Howard Hinnant | 083ba5f | 2011-05-31 21:45:26 +0000 | [diff] [blame] | 1118 | { |
| 1119 | static const bool value = false; |
| 1120 | }; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1121 | public: |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1122 | typedef _Rp result_type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1123 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1124 | // construct/copy/destroy: |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1125 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1126 | function() _NOEXCEPT : __f_(0) {} |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1127 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1128 | function(nullptr_t) _NOEXCEPT : __f_(0) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1129 | function(const function&); |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1130 | function(function&&) _NOEXCEPT; |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1131 | template<class _Fp> |
| 1132 | function(_Fp, |
| 1133 | typename enable_if<__callable<_Fp>::value>::type* = 0); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1134 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1135 | template<class _Alloc> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1136 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1137 | function(allocator_arg_t, const _Alloc&) _NOEXCEPT : __f_(0) {} |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1138 | template<class _Alloc> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1139 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1140 | function(allocator_arg_t, const _Alloc&, nullptr_t) _NOEXCEPT : __f_(0) {} |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1141 | template<class _Alloc> |
| 1142 | function(allocator_arg_t, const _Alloc&, const function&); |
| 1143 | template<class _Alloc> |
| 1144 | function(allocator_arg_t, const _Alloc&, function&&); |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1145 | template<class _Fp, class _Alloc> |
| 1146 | function(allocator_arg_t, const _Alloc& __a, _Fp __f, |
| 1147 | typename enable_if<__callable<_Fp>::value>::type* = 0); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1148 | |
| 1149 | function& operator=(const function&); |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1150 | function& operator=(function&&) _NOEXCEPT; |
| 1151 | function& operator=(nullptr_t) _NOEXCEPT; |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1152 | template<class _Fp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1153 | typename enable_if |
| 1154 | < |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1155 | __callable<typename decay<_Fp>::type>::value, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1156 | function& |
| 1157 | >::type |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1158 | operator=(_Fp&&); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1159 | |
| 1160 | ~function(); |
| 1161 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1162 | // function modifiers: |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1163 | void swap(function&) _NOEXCEPT; |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1164 | template<class _Fp, class _Alloc> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1165 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1166 | void assign(_Fp&& __f, const _Alloc& __a) |
| 1167 | {function(allocator_arg, __a, _VSTD::forward<_Fp>(__f)).swap(*this);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1168 | |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1169 | // function capacity: |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1170 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1171 | /*explicit*/ operator bool() const _NOEXCEPT {return __f_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1172 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1173 | // deleted overloads close possible hole in the type system |
| 1174 | template<class _R2, class... _ArgTypes2> |
Howard Hinnant | a0f1dc9 | 2010-09-11 15:33:21 +0000 | [diff] [blame] | 1175 | bool operator==(const function<_R2(_ArgTypes2...)>&) const = delete; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1176 | template<class _R2, class... _ArgTypes2> |
Howard Hinnant | a0f1dc9 | 2010-09-11 15:33:21 +0000 | [diff] [blame] | 1177 | bool operator!=(const function<_R2(_ArgTypes2...)>&) const = delete; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1178 | public: |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1179 | // function invocation: |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1180 | _Rp operator()(_ArgTypes...) const; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1181 | |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 1182 | #ifndef _LIBCPP_NO_RTTI |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1183 | // function target access: |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1184 | const std::type_info& target_type() const _NOEXCEPT; |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1185 | template <typename _Tp> _Tp* target() _NOEXCEPT; |
| 1186 | template <typename _Tp> const _Tp* target() const _NOEXCEPT; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1187 | #endif // _LIBCPP_NO_RTTI |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1188 | }; |
| 1189 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1190 | template<class _Rp, class ..._ArgTypes> |
| 1191 | function<_Rp(_ArgTypes...)>::function(const function& __f) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1192 | { |
| 1193 | if (__f.__f_ == 0) |
| 1194 | __f_ = 0; |
| 1195 | else if (__f.__f_ == (const __base*)&__f.__buf_) |
| 1196 | { |
| 1197 | __f_ = (__base*)&__buf_; |
| 1198 | __f.__f_->__clone(__f_); |
| 1199 | } |
| 1200 | else |
| 1201 | __f_ = __f.__f_->__clone(); |
| 1202 | } |
| 1203 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1204 | template<class _Rp, class ..._ArgTypes> |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1205 | template <class _Alloc> |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1206 | function<_Rp(_ArgTypes...)>::function(allocator_arg_t, const _Alloc&, |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1207 | const function& __f) |
| 1208 | { |
| 1209 | if (__f.__f_ == 0) |
| 1210 | __f_ = 0; |
| 1211 | else if (__f.__f_ == (const __base*)&__f.__buf_) |
| 1212 | { |
| 1213 | __f_ = (__base*)&__buf_; |
| 1214 | __f.__f_->__clone(__f_); |
| 1215 | } |
| 1216 | else |
| 1217 | __f_ = __f.__f_->__clone(); |
| 1218 | } |
| 1219 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1220 | template<class _Rp, class ..._ArgTypes> |
| 1221 | function<_Rp(_ArgTypes...)>::function(function&& __f) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1222 | { |
| 1223 | if (__f.__f_ == 0) |
| 1224 | __f_ = 0; |
| 1225 | else if (__f.__f_ == (__base*)&__f.__buf_) |
| 1226 | { |
| 1227 | __f_ = (__base*)&__buf_; |
| 1228 | __f.__f_->__clone(__f_); |
| 1229 | } |
| 1230 | else |
| 1231 | { |
| 1232 | __f_ = __f.__f_; |
| 1233 | __f.__f_ = 0; |
| 1234 | } |
| 1235 | } |
| 1236 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1237 | template<class _Rp, class ..._ArgTypes> |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1238 | template <class _Alloc> |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1239 | function<_Rp(_ArgTypes...)>::function(allocator_arg_t, const _Alloc&, |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1240 | function&& __f) |
| 1241 | { |
| 1242 | if (__f.__f_ == 0) |
| 1243 | __f_ = 0; |
| 1244 | else if (__f.__f_ == (__base*)&__f.__buf_) |
| 1245 | { |
| 1246 | __f_ = (__base*)&__buf_; |
| 1247 | __f.__f_->__clone(__f_); |
| 1248 | } |
| 1249 | else |
| 1250 | { |
| 1251 | __f_ = __f.__f_; |
| 1252 | __f.__f_ = 0; |
| 1253 | } |
| 1254 | } |
| 1255 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1256 | template<class _Rp, class ..._ArgTypes> |
| 1257 | template <class _Fp> |
| 1258 | function<_Rp(_ArgTypes...)>::function(_Fp __f, |
| 1259 | typename enable_if<__callable<_Fp>::value>::type*) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1260 | : __f_(0) |
| 1261 | { |
| 1262 | if (__not_null(__f)) |
| 1263 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1264 | typedef __function::__func<_Fp, allocator<_Fp>, _Rp(_ArgTypes...)> _FF; |
| 1265 | if (sizeof(_FF) <= sizeof(__buf_) && is_nothrow_copy_constructible<_Fp>::value) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1266 | { |
| 1267 | __f_ = (__base*)&__buf_; |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1268 | ::new (__f_) _FF(_VSTD::move(__f)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1269 | } |
| 1270 | else |
| 1271 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1272 | typedef allocator<_FF> _Ap; |
| 1273 | _Ap __a; |
| 1274 | typedef __allocator_destructor<_Ap> _Dp; |
| 1275 | unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); |
| 1276 | ::new (__hold.get()) _FF(_VSTD::move(__f), allocator<_Fp>(__a)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1277 | __f_ = __hold.release(); |
| 1278 | } |
| 1279 | } |
| 1280 | } |
| 1281 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1282 | template<class _Rp, class ..._ArgTypes> |
| 1283 | template <class _Fp, class _Alloc> |
| 1284 | function<_Rp(_ArgTypes...)>::function(allocator_arg_t, const _Alloc& __a0, _Fp __f, |
| 1285 | typename enable_if<__callable<_Fp>::value>::type*) |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1286 | : __f_(0) |
| 1287 | { |
| 1288 | typedef allocator_traits<_Alloc> __alloc_traits; |
| 1289 | if (__not_null(__f)) |
| 1290 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1291 | typedef __function::__func<_Fp, _Alloc, _Rp(_ArgTypes...)> _FF; |
| 1292 | if (sizeof(_FF) <= sizeof(__buf_) && is_nothrow_copy_constructible<_Fp>::value) |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1293 | { |
| 1294 | __f_ = (__base*)&__buf_; |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1295 | ::new (__f_) _FF(_VSTD::move(__f)); |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1296 | } |
| 1297 | else |
| 1298 | { |
| 1299 | typedef typename __alloc_traits::template |
| 1300 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 1301 | rebind_alloc<_FF> |
| 1302 | #else |
| 1303 | rebind_alloc<_FF>::other |
| 1304 | #endif |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1305 | _Ap; |
| 1306 | _Ap __a(__a0); |
| 1307 | typedef __allocator_destructor<_Ap> _Dp; |
| 1308 | unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1309 | ::new (__hold.get()) _FF(_VSTD::move(__f), _Alloc(__a)); |
Howard Hinnant | 7255280 | 2010-08-20 19:36:46 +0000 | [diff] [blame] | 1310 | __f_ = __hold.release(); |
| 1311 | } |
| 1312 | } |
| 1313 | } |
| 1314 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1315 | template<class _Rp, class ..._ArgTypes> |
| 1316 | function<_Rp(_ArgTypes...)>& |
| 1317 | function<_Rp(_ArgTypes...)>::operator=(const function& __f) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1318 | { |
| 1319 | function(__f).swap(*this); |
| 1320 | return *this; |
| 1321 | } |
| 1322 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1323 | template<class _Rp, class ..._ArgTypes> |
| 1324 | function<_Rp(_ArgTypes...)>& |
| 1325 | function<_Rp(_ArgTypes...)>::operator=(function&& __f) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1326 | { |
| 1327 | if (__f_ == (__base*)&__buf_) |
| 1328 | __f_->destroy(); |
| 1329 | else if (__f_) |
| 1330 | __f_->destroy_deallocate(); |
| 1331 | __f_ = 0; |
| 1332 | if (__f.__f_ == 0) |
| 1333 | __f_ = 0; |
| 1334 | else if (__f.__f_ == (__base*)&__f.__buf_) |
| 1335 | { |
| 1336 | __f_ = (__base*)&__buf_; |
| 1337 | __f.__f_->__clone(__f_); |
| 1338 | } |
| 1339 | else |
| 1340 | { |
| 1341 | __f_ = __f.__f_; |
| 1342 | __f.__f_ = 0; |
| 1343 | } |
| 1344 | } |
| 1345 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1346 | template<class _Rp, class ..._ArgTypes> |
| 1347 | function<_Rp(_ArgTypes...)>& |
| 1348 | function<_Rp(_ArgTypes...)>::operator=(nullptr_t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1349 | { |
| 1350 | if (__f_ == (__base*)&__buf_) |
| 1351 | __f_->destroy(); |
| 1352 | else if (__f_) |
| 1353 | __f_->destroy_deallocate(); |
| 1354 | __f_ = 0; |
| 1355 | } |
| 1356 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1357 | template<class _Rp, class ..._ArgTypes> |
| 1358 | template <class _Fp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1359 | typename enable_if |
| 1360 | < |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1361 | function<_Rp(_ArgTypes...)>::template __callable<typename decay<_Fp>::type>::value, |
| 1362 | function<_Rp(_ArgTypes...)>& |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1363 | >::type |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1364 | function<_Rp(_ArgTypes...)>::operator=(_Fp&& __f) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1365 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1366 | function(_VSTD::forward<_Fp>(__f)).swap(*this); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1367 | return *this; |
| 1368 | } |
| 1369 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1370 | template<class _Rp, class ..._ArgTypes> |
| 1371 | function<_Rp(_ArgTypes...)>::~function() |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1372 | { |
| 1373 | if (__f_ == (__base*)&__buf_) |
| 1374 | __f_->destroy(); |
| 1375 | else if (__f_) |
| 1376 | __f_->destroy_deallocate(); |
| 1377 | } |
| 1378 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1379 | template<class _Rp, class ..._ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1380 | void |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1381 | function<_Rp(_ArgTypes...)>::swap(function& __f) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1382 | { |
| 1383 | if (__f_ == (__base*)&__buf_ && __f.__f_ == (__base*)&__f.__buf_) |
| 1384 | { |
| 1385 | typename aligned_storage<sizeof(__buf_)>::type __tempbuf; |
| 1386 | __base* __t = (__base*)&__tempbuf; |
| 1387 | __f_->__clone(__t); |
| 1388 | __f_->destroy(); |
| 1389 | __f_ = 0; |
| 1390 | __f.__f_->__clone((__base*)&__buf_); |
| 1391 | __f.__f_->destroy(); |
| 1392 | __f.__f_ = 0; |
| 1393 | __f_ = (__base*)&__buf_; |
| 1394 | __t->__clone((__base*)&__f.__buf_); |
| 1395 | __t->destroy(); |
| 1396 | __f.__f_ = (__base*)&__f.__buf_; |
| 1397 | } |
| 1398 | else if (__f_ == (__base*)&__buf_) |
| 1399 | { |
| 1400 | __f_->__clone((__base*)&__f.__buf_); |
| 1401 | __f_->destroy(); |
| 1402 | __f_ = __f.__f_; |
| 1403 | __f.__f_ = (__base*)&__f.__buf_; |
| 1404 | } |
| 1405 | else if (__f.__f_ == (__base*)&__f.__buf_) |
| 1406 | { |
| 1407 | __f.__f_->__clone((__base*)&__buf_); |
| 1408 | __f.__f_->destroy(); |
| 1409 | __f.__f_ = __f_; |
| 1410 | __f_ = (__base*)&__buf_; |
| 1411 | } |
| 1412 | else |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1413 | _VSTD::swap(__f_, __f.__f_); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1414 | } |
| 1415 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1416 | template<class _Rp, class ..._ArgTypes> |
| 1417 | _Rp |
| 1418 | function<_Rp(_ArgTypes...)>::operator()(_ArgTypes... __arg) const |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1419 | { |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 1420 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1421 | if (__f_ == 0) |
| 1422 | throw bad_function_call(); |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1423 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1424 | return (*__f_)(_VSTD::forward<_ArgTypes>(__arg)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 1427 | #ifndef _LIBCPP_NO_RTTI |
| 1428 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1429 | template<class _Rp, class ..._ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1430 | const std::type_info& |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1431 | function<_Rp(_ArgTypes...)>::target_type() const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1432 | { |
| 1433 | if (__f_ == 0) |
| 1434 | return typeid(void); |
| 1435 | return __f_->target_type(); |
| 1436 | } |
| 1437 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1438 | template<class _Rp, class ..._ArgTypes> |
| 1439 | template <typename _Tp> |
| 1440 | _Tp* |
| 1441 | function<_Rp(_ArgTypes...)>::target() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1442 | { |
| 1443 | if (__f_ == 0) |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1444 | return (_Tp*)0; |
| 1445 | return (_Tp*)__f_->target(typeid(_Tp)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1446 | } |
| 1447 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1448 | template<class _Rp, class ..._ArgTypes> |
| 1449 | template <typename _Tp> |
| 1450 | const _Tp* |
| 1451 | function<_Rp(_ArgTypes...)>::target() const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1452 | { |
| 1453 | if (__f_ == 0) |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1454 | return (const _Tp*)0; |
| 1455 | return (const _Tp*)__f_->target(typeid(_Tp)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1456 | } |
| 1457 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1458 | #endif // _LIBCPP_NO_RTTI |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 1459 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1460 | template <class _Rp, class... _ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1461 | inline _LIBCPP_INLINE_VISIBILITY |
| 1462 | bool |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1463 | operator==(const function<_Rp(_ArgTypes...)>& __f, nullptr_t) _NOEXCEPT {return !__f;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1464 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1465 | template <class _Rp, class... _ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1466 | inline _LIBCPP_INLINE_VISIBILITY |
| 1467 | bool |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1468 | operator==(nullptr_t, const function<_Rp(_ArgTypes...)>& __f) _NOEXCEPT {return !__f;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1469 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1470 | template <class _Rp, class... _ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1471 | inline _LIBCPP_INLINE_VISIBILITY |
| 1472 | bool |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1473 | operator!=(const function<_Rp(_ArgTypes...)>& __f, nullptr_t) _NOEXCEPT {return (bool)__f;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1474 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1475 | template <class _Rp, class... _ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1476 | inline _LIBCPP_INLINE_VISIBILITY |
| 1477 | bool |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1478 | operator!=(nullptr_t, const function<_Rp(_ArgTypes...)>& __f) _NOEXCEPT {return (bool)__f;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1479 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1480 | template <class _Rp, class... _ArgTypes> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1481 | inline _LIBCPP_INLINE_VISIBILITY |
| 1482 | void |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1483 | swap(function<_Rp(_ArgTypes...)>& __x, function<_Rp(_ArgTypes...)>& __y) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1484 | {return __x.swap(__y);} |
| 1485 | |
| 1486 | template<class _Tp> struct __is_bind_expression : public false_type {}; |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1487 | template<class _Tp> struct _LIBCPP_VISIBLE is_bind_expression |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1488 | : public __is_bind_expression<typename remove_cv<_Tp>::type> {}; |
| 1489 | |
| 1490 | template<class _Tp> struct __is_placeholder : public integral_constant<int, 0> {}; |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1491 | template<class _Tp> struct _LIBCPP_VISIBLE is_placeholder |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1492 | : public __is_placeholder<typename remove_cv<_Tp>::type> {}; |
| 1493 | |
| 1494 | namespace placeholders |
| 1495 | { |
| 1496 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1497 | template <int _Np> struct __ph {}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1498 | |
| 1499 | extern __ph<1> _1; |
| 1500 | extern __ph<2> _2; |
| 1501 | extern __ph<3> _3; |
| 1502 | extern __ph<4> _4; |
| 1503 | extern __ph<5> _5; |
| 1504 | extern __ph<6> _6; |
| 1505 | extern __ph<7> _7; |
| 1506 | extern __ph<8> _8; |
| 1507 | extern __ph<9> _9; |
| 1508 | extern __ph<10> _10; |
| 1509 | |
| 1510 | } // placeholders |
| 1511 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1512 | template<int _Np> |
| 1513 | struct __is_placeholder<placeholders::__ph<_Np> > |
| 1514 | : public integral_constant<int, _Np> {}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1515 | |
| 1516 | template <class _Tp, class _Uj> |
| 1517 | inline _LIBCPP_INLINE_VISIBILITY |
| 1518 | _Tp& |
| 1519 | __mu(reference_wrapper<_Tp> __t, _Uj&) |
| 1520 | { |
| 1521 | return __t.get(); |
| 1522 | } |
| 1523 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1524 | template <class _Ti, class ..._Uj, size_t ..._Indx> |
| 1525 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 0148a83 | 2011-05-19 19:41:47 +0000 | [diff] [blame] | 1526 | typename __invoke_of<_Ti&, _Uj...>::type |
| 1527 | __mu_expand(_Ti& __ti, tuple<_Uj...>& __uj, __tuple_indices<_Indx...>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1528 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1529 | return __ti(_VSTD::forward<_Uj>(get<_Indx>(__uj))...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1530 | } |
| 1531 | |
| 1532 | template <class _Ti, class ..._Uj> |
| 1533 | inline _LIBCPP_INLINE_VISIBILITY |
| 1534 | typename enable_if |
| 1535 | < |
| 1536 | is_bind_expression<_Ti>::value, |
Howard Hinnant | 0148a83 | 2011-05-19 19:41:47 +0000 | [diff] [blame] | 1537 | typename __invoke_of<_Ti&, _Uj...>::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1538 | >::type |
| 1539 | __mu(_Ti& __ti, tuple<_Uj...>& __uj) |
| 1540 | { |
| 1541 | typedef typename __make_tuple_indices<sizeof...(_Uj)>::type __indices; |
| 1542 | return __mu_expand(__ti, __uj, __indices()); |
| 1543 | } |
| 1544 | |
| 1545 | template <bool IsPh, class _Ti, class _Uj> |
| 1546 | struct __mu_return2 {}; |
| 1547 | |
| 1548 | template <class _Ti, class _Uj> |
| 1549 | struct __mu_return2<true, _Ti, _Uj> |
| 1550 | { |
| 1551 | typedef typename tuple_element<is_placeholder<_Ti>::value - 1, _Uj>::type type; |
| 1552 | }; |
| 1553 | |
| 1554 | template <class _Ti, class _Uj> |
| 1555 | inline _LIBCPP_INLINE_VISIBILITY |
| 1556 | typename enable_if |
| 1557 | < |
| 1558 | 0 < is_placeholder<_Ti>::value, |
| 1559 | typename __mu_return2<0 < is_placeholder<_Ti>::value, _Ti, _Uj>::type |
| 1560 | >::type |
| 1561 | __mu(_Ti&, _Uj& __uj) |
| 1562 | { |
| 1563 | const size_t _Indx = is_placeholder<_Ti>::value - 1; |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1564 | return _VSTD::forward<typename tuple_element<_Indx, _Uj>::type>(get<_Indx>(__uj)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1565 | } |
| 1566 | |
| 1567 | template <class _Ti, class _Uj> |
| 1568 | inline _LIBCPP_INLINE_VISIBILITY |
| 1569 | typename enable_if |
| 1570 | < |
| 1571 | !is_bind_expression<_Ti>::value && |
| 1572 | is_placeholder<_Ti>::value == 0 && |
| 1573 | !__is_reference_wrapper<_Ti>::value, |
| 1574 | _Ti& |
| 1575 | >::type |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 1576 | __mu(_Ti& __ti, _Uj&) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1577 | { |
| 1578 | return __ti; |
| 1579 | } |
| 1580 | |
Howard Hinnant | ef54251 | 2011-05-22 15:07:43 +0000 | [diff] [blame] | 1581 | template <class _Ti, bool IsReferenceWrapper, bool IsBindEx, bool IsPh, |
| 1582 | class _TupleUj> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1583 | struct ____mu_return; |
| 1584 | |
| 1585 | template <class _Ti, class ..._Uj> |
Howard Hinnant | ef54251 | 2011-05-22 15:07:43 +0000 | [diff] [blame] | 1586 | struct ____mu_return<_Ti, false, true, false, tuple<_Uj...> > |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1587 | { |
Howard Hinnant | 0148a83 | 2011-05-19 19:41:47 +0000 | [diff] [blame] | 1588 | typedef typename __invoke_of<_Ti&, _Uj...>::type type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1589 | }; |
| 1590 | |
| 1591 | template <class _Ti, class _TupleUj> |
Howard Hinnant | ef54251 | 2011-05-22 15:07:43 +0000 | [diff] [blame] | 1592 | struct ____mu_return<_Ti, false, false, true, _TupleUj> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1593 | { |
| 1594 | typedef typename tuple_element<is_placeholder<_Ti>::value - 1, |
| 1595 | _TupleUj>::type&& type; |
| 1596 | }; |
| 1597 | |
| 1598 | template <class _Ti, class _TupleUj> |
Howard Hinnant | ef54251 | 2011-05-22 15:07:43 +0000 | [diff] [blame] | 1599 | struct ____mu_return<_Ti, true, false, false, _TupleUj> |
| 1600 | { |
| 1601 | typedef typename _Ti::type& type; |
| 1602 | }; |
| 1603 | |
| 1604 | template <class _Ti, class _TupleUj> |
| 1605 | struct ____mu_return<_Ti, false, false, false, _TupleUj> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1606 | { |
| 1607 | typedef _Ti& type; |
| 1608 | }; |
| 1609 | |
| 1610 | template <class _Ti, class _TupleUj> |
| 1611 | struct __mu_return |
| 1612 | : public ____mu_return<_Ti, |
Howard Hinnant | ef54251 | 2011-05-22 15:07:43 +0000 | [diff] [blame] | 1613 | __is_reference_wrapper<_Ti>::value, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1614 | is_bind_expression<_Ti>::value, |
| 1615 | 0 < is_placeholder<_Ti>::value, |
| 1616 | _TupleUj> |
| 1617 | { |
| 1618 | }; |
| 1619 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1620 | template <class _Fp, class _BoundArgs, class _TupleUj> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1621 | struct __bind_return; |
| 1622 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1623 | template <class _Fp, class ..._BoundArgs, class _TupleUj> |
| 1624 | struct __bind_return<_Fp, tuple<_BoundArgs...>, _TupleUj> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1625 | { |
Howard Hinnant | 0148a83 | 2011-05-19 19:41:47 +0000 | [diff] [blame] | 1626 | typedef typename __invoke_of |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1627 | < |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1628 | _Fp&, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1629 | typename __mu_return |
| 1630 | < |
| 1631 | _BoundArgs, |
| 1632 | _TupleUj |
| 1633 | >::type... |
| 1634 | >::type type; |
| 1635 | }; |
| 1636 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1637 | template <class _Fp, class ..._BoundArgs, class _TupleUj> |
| 1638 | struct __bind_return<_Fp, const tuple<_BoundArgs...>, _TupleUj> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1639 | { |
Howard Hinnant | 0148a83 | 2011-05-19 19:41:47 +0000 | [diff] [blame] | 1640 | typedef typename __invoke_of |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1641 | < |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1642 | _Fp&, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1643 | typename __mu_return |
| 1644 | < |
| 1645 | const _BoundArgs, |
| 1646 | _TupleUj |
| 1647 | >::type... |
| 1648 | >::type type; |
| 1649 | }; |
| 1650 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1651 | template <class _Fp, class _BoundArgs, size_t ..._Indx, class _Args> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1652 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1653 | typename __bind_return<_Fp, _BoundArgs, _Args>::type |
| 1654 | __apply_functor(_Fp& __f, _BoundArgs& __bound_args, __tuple_indices<_Indx...>, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1655 | _Args&& __args) |
| 1656 | { |
| 1657 | return __invoke(__f, __mu(get<_Indx>(__bound_args), __args)...); |
| 1658 | } |
| 1659 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1660 | template<class _Fp, class ..._BoundArgs> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1661 | class __bind |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1662 | : public __weak_result_type<typename decay<_Fp>::type> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1663 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1664 | typedef typename decay<_Fp>::type _Fd; |
Howard Hinnant | 0148a83 | 2011-05-19 19:41:47 +0000 | [diff] [blame] | 1665 | typedef tuple<typename decay<_BoundArgs>::type...> _Td; |
| 1666 | _Fd __f_; |
| 1667 | _Td __bound_args_; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1668 | |
| 1669 | typedef typename __make_tuple_indices<sizeof...(_BoundArgs)>::type __indices; |
| 1670 | public: |
Howard Hinnant | 90d7785 | 2011-07-02 18:22:36 +0000 | [diff] [blame] | 1671 | #ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS |
| 1672 | |
| 1673 | _LIBCPP_INLINE_VISIBILITY |
| 1674 | __bind(const __bind& __b) |
| 1675 | : __f_(__b.__f_), |
| 1676 | __bound_args_(__b.__bound_args_) {} |
| 1677 | |
| 1678 | _LIBCPP_INLINE_VISIBILITY |
| 1679 | __bind& operator=(const __bind& __b) |
| 1680 | { |
| 1681 | __f_ = __b.__f_; |
| 1682 | __bound_args_ = __b.__bound_args_; |
| 1683 | return *this; |
| 1684 | } |
| 1685 | |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1686 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1687 | __bind(__bind&& __b) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1688 | : __f_(_VSTD::move(__b.__f_)), |
| 1689 | __bound_args_(_VSTD::move(__b.__bound_args_)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1690 | |
Howard Hinnant | 90d7785 | 2011-07-02 18:22:36 +0000 | [diff] [blame] | 1691 | _LIBCPP_INLINE_VISIBILITY |
| 1692 | __bind& operator=(__bind&& __b) |
| 1693 | { |
| 1694 | __f_ = _VSTD::move(__b.__f_); |
| 1695 | __bound_args_ = _VSTD::move(__b.__bound_args_); |
| 1696 | return *this; |
| 1697 | } |
| 1698 | |
| 1699 | #endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS |
| 1700 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1701 | template <class _Gp, class ..._BA> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1702 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1703 | explicit __bind(_Gp&& __f, _BA&& ...__bound_args) |
| 1704 | : __f_(_VSTD::forward<_Gp>(__f)), |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1705 | __bound_args_(_VSTD::forward<_BA>(__bound_args)...) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1706 | |
| 1707 | template <class ..._Args> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1708 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 0148a83 | 2011-05-19 19:41:47 +0000 | [diff] [blame] | 1709 | typename __bind_return<_Fd, _Td, tuple<_Args&&...> >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1710 | operator()(_Args&& ...__args) |
| 1711 | { |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1712 | return __apply_functor(__f_, __bound_args_, __indices(), |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1713 | tuple<_Args&&...>(_VSTD::forward<_Args>(__args)...)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1714 | } |
| 1715 | |
| 1716 | template <class ..._Args> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1717 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 0148a83 | 2011-05-19 19:41:47 +0000 | [diff] [blame] | 1718 | typename __bind_return<_Fd, _Td, tuple<_Args&&...> >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1719 | operator()(_Args&& ...__args) const |
| 1720 | { |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1721 | return __apply_functor(__f_, __bound_args_, __indices(), |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1722 | tuple<_Args&&...>(_VSTD::forward<_Args>(__args)...)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1723 | } |
| 1724 | }; |
| 1725 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1726 | template<class _Fp, class ..._BoundArgs> |
| 1727 | struct __is_bind_expression<__bind<_Fp, _BoundArgs...> > : public true_type {}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1728 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1729 | template<class _Rp, class _Fp, class ..._BoundArgs> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1730 | class __bind_r |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1731 | : public __bind<_Fp, _BoundArgs...> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1732 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1733 | typedef __bind<_Fp, _BoundArgs...> base; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1734 | public: |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1735 | typedef _Rp result_type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1736 | |
Howard Hinnant | 90d7785 | 2011-07-02 18:22:36 +0000 | [diff] [blame] | 1737 | #ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS |
| 1738 | |
| 1739 | _LIBCPP_INLINE_VISIBILITY |
| 1740 | __bind_r(const __bind_r& __b) |
| 1741 | : base(_VSTD::forward<const base&>(__b)) {} |
| 1742 | |
| 1743 | _LIBCPP_INLINE_VISIBILITY |
| 1744 | __bind_r& operator=(const __bind_r& __b) |
| 1745 | { |
| 1746 | base::operator=(_VSTD::forward<const base&>(__b)); |
| 1747 | return *this; |
| 1748 | } |
| 1749 | |
Howard Hinnant | 496934a | 2011-05-16 16:19:01 +0000 | [diff] [blame] | 1750 | _LIBCPP_INLINE_VISIBILITY |
| 1751 | __bind_r(__bind_r&& __b) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1752 | : base(_VSTD::forward<base>(__b)) {} |
Howard Hinnant | 496934a | 2011-05-16 16:19:01 +0000 | [diff] [blame] | 1753 | |
Howard Hinnant | 90d7785 | 2011-07-02 18:22:36 +0000 | [diff] [blame] | 1754 | _LIBCPP_INLINE_VISIBILITY |
| 1755 | __bind_r& operator=(__bind_r&& __b) |
| 1756 | { |
| 1757 | base::operator=(_VSTD::forward<base>(__b)); |
| 1758 | return *this; |
| 1759 | } |
| 1760 | |
| 1761 | #endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS |
| 1762 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1763 | template <class _Gp, class ..._BA> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1764 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1765 | explicit __bind_r(_Gp&& __f, _BA&& ...__bound_args) |
| 1766 | : base(_VSTD::forward<_Gp>(__f), |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1767 | _VSTD::forward<_BA>(__bound_args)...) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1768 | |
| 1769 | template <class ..._Args> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1770 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1771 | result_type |
| 1772 | operator()(_Args&& ...__args) |
| 1773 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1774 | return base::operator()(_VSTD::forward<_Args>(__args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1775 | } |
| 1776 | |
| 1777 | template <class ..._Args> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1778 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1779 | result_type |
| 1780 | operator()(_Args&& ...__args) const |
| 1781 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1782 | return base::operator()(_VSTD::forward<_Args>(__args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1783 | } |
| 1784 | }; |
| 1785 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1786 | template<class _Rp, class _Fp, class ..._BoundArgs> |
| 1787 | struct __is_bind_expression<__bind_r<_Rp, _Fp, _BoundArgs...> > : public true_type {}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1788 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1789 | template<class _Fp, class ..._BoundArgs> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1790 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1791 | __bind<_Fp, _BoundArgs...> |
| 1792 | bind(_Fp&& __f, _BoundArgs&&... __bound_args) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1793 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1794 | typedef __bind<_Fp, _BoundArgs...> type; |
| 1795 | return type(_VSTD::forward<_Fp>(__f), _VSTD::forward<_BoundArgs>(__bound_args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1796 | } |
| 1797 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1798 | template<class _Rp, class _Fp, class ..._BoundArgs> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1799 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1800 | __bind_r<_Rp, _Fp, _BoundArgs...> |
| 1801 | bind(_Fp&& __f, _BoundArgs&&... __bound_args) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1802 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1803 | typedef __bind_r<_Rp, _Fp, _BoundArgs...> type; |
| 1804 | return type(_VSTD::forward<_Fp>(__f), _VSTD::forward<_BoundArgs>(__bound_args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1805 | } |
| 1806 | |
| 1807 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 1808 | |
| 1809 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1810 | struct _LIBCPP_VISIBLE hash<bool> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1811 | : public unary_function<bool, size_t> |
| 1812 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1813 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1814 | size_t operator()(bool __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1815 | }; |
| 1816 | |
| 1817 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1818 | struct _LIBCPP_VISIBLE hash<char> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1819 | : public unary_function<char, size_t> |
| 1820 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1821 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1822 | size_t operator()(char __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1823 | }; |
| 1824 | |
| 1825 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1826 | struct _LIBCPP_VISIBLE hash<signed char> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1827 | : public unary_function<signed char, size_t> |
| 1828 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1829 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1830 | size_t operator()(signed char __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1831 | }; |
| 1832 | |
| 1833 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1834 | struct _LIBCPP_VISIBLE hash<unsigned char> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1835 | : public unary_function<unsigned char, size_t> |
| 1836 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1837 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1838 | size_t operator()(unsigned char __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1839 | }; |
| 1840 | |
| 1841 | #ifndef _LIBCPP_HAS_NO_UNICODE_CHARS |
| 1842 | |
| 1843 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1844 | struct _LIBCPP_VISIBLE hash<char16_t> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1845 | : public unary_function<char16_t, size_t> |
| 1846 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1847 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1848 | size_t operator()(char16_t __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1849 | }; |
| 1850 | |
| 1851 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1852 | struct _LIBCPP_VISIBLE hash<char32_t> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1853 | : public unary_function<char32_t, size_t> |
| 1854 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1855 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1856 | size_t operator()(char32_t __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1857 | }; |
| 1858 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1859 | #endif // _LIBCPP_HAS_NO_UNICODE_CHARS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1860 | |
| 1861 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1862 | struct _LIBCPP_VISIBLE hash<wchar_t> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1863 | : public unary_function<wchar_t, size_t> |
| 1864 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1865 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1866 | size_t operator()(wchar_t __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1867 | }; |
| 1868 | |
| 1869 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1870 | struct _LIBCPP_VISIBLE hash<short> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1871 | : public unary_function<short, size_t> |
| 1872 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1873 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1874 | size_t operator()(short __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1875 | }; |
| 1876 | |
| 1877 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1878 | struct _LIBCPP_VISIBLE hash<unsigned short> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1879 | : public unary_function<unsigned short, size_t> |
| 1880 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1881 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1882 | size_t operator()(unsigned short __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1883 | }; |
| 1884 | |
| 1885 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1886 | struct _LIBCPP_VISIBLE hash<int> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1887 | : public unary_function<int, size_t> |
| 1888 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1889 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1890 | size_t operator()(int __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1891 | }; |
| 1892 | |
| 1893 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1894 | struct _LIBCPP_VISIBLE hash<unsigned int> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1895 | : public unary_function<unsigned int, size_t> |
| 1896 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1897 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1898 | size_t operator()(unsigned int __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1899 | }; |
| 1900 | |
| 1901 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1902 | struct _LIBCPP_VISIBLE hash<long> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1903 | : public unary_function<long, size_t> |
| 1904 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1905 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1906 | size_t operator()(long __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1907 | }; |
| 1908 | |
| 1909 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1910 | struct _LIBCPP_VISIBLE hash<unsigned long> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1911 | : public unary_function<unsigned long, size_t> |
| 1912 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1913 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1914 | size_t operator()(unsigned long __v) const _NOEXCEPT {return static_cast<size_t>(__v);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1915 | }; |
| 1916 | |
| 1917 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1918 | struct _LIBCPP_VISIBLE hash<long long> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1919 | : public unary_function<long long, size_t> |
| 1920 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1921 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1922 | size_t operator()(long long __v) const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1923 | { |
Howard Hinnant | 62453ea | 2011-12-02 22:52:09 +0000 | [diff] [blame^] | 1924 | #ifdef __LP64__ |
| 1925 | return __v; |
| 1926 | #else |
| 1927 | union { |
| 1928 | long long __l; |
| 1929 | struct { |
| 1930 | int __a; |
| 1931 | int __b; |
| 1932 | } __s; |
| 1933 | } __u; |
| 1934 | __u.__l = __v; |
| 1935 | return __u.__s.__a ^ __u.__s.__b; |
| 1936 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1937 | } |
| 1938 | }; |
| 1939 | |
| 1940 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1941 | struct _LIBCPP_VISIBLE hash<unsigned long long> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1942 | : public unary_function<unsigned long long, size_t> |
| 1943 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1944 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1945 | size_t operator()(unsigned long long __v) const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1946 | { |
Howard Hinnant | 62453ea | 2011-12-02 22:52:09 +0000 | [diff] [blame^] | 1947 | #ifdef __LP64__ |
| 1948 | return __v; |
| 1949 | #else |
| 1950 | union { |
| 1951 | unsigned long long __ul; |
| 1952 | struct { |
| 1953 | int __a; |
| 1954 | int __b; |
| 1955 | } __s; |
| 1956 | } __u; |
| 1957 | __u.__ul = __v; |
| 1958 | return __u.__s.__a ^ __u.__s.__b; |
| 1959 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1960 | } |
| 1961 | }; |
| 1962 | |
| 1963 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1964 | struct _LIBCPP_VISIBLE hash<float> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1965 | : public unary_function<float, size_t> |
| 1966 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1967 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1968 | size_t operator()(float __v) const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1969 | { |
Howard Hinnant | 62453ea | 2011-12-02 22:52:09 +0000 | [diff] [blame^] | 1970 | union { |
| 1971 | #ifdef __LP64__ |
| 1972 | double __f; |
| 1973 | #else |
| 1974 | float __f; |
| 1975 | #endif |
| 1976 | size_t __d; |
| 1977 | } __u; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1978 | if (__v == 0) |
| 1979 | return 0; |
Howard Hinnant | 62453ea | 2011-12-02 22:52:09 +0000 | [diff] [blame^] | 1980 | __u.__f = __v; |
| 1981 | return __u.__d; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1982 | } |
| 1983 | }; |
| 1984 | |
| 1985 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1986 | struct _LIBCPP_VISIBLE hash<double> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1987 | : public unary_function<double, size_t> |
| 1988 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 1989 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 1990 | size_t operator()(double __v) const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1991 | { |
Howard Hinnant | 62453ea | 2011-12-02 22:52:09 +0000 | [diff] [blame^] | 1992 | union { |
| 1993 | #ifdef __LP64__ |
| 1994 | double __f; |
| 1995 | #else |
| 1996 | float __f; |
| 1997 | #endif |
| 1998 | size_t __d; |
| 1999 | } __u; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2000 | if (__v == 0) |
| 2001 | return 0; |
Howard Hinnant | 62453ea | 2011-12-02 22:52:09 +0000 | [diff] [blame^] | 2002 | __u.__f = __v; |
| 2003 | return __u.__d; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2004 | } |
| 2005 | }; |
| 2006 | |
| 2007 | template <> |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 2008 | struct _LIBCPP_VISIBLE hash<long double> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2009 | : public unary_function<long double, size_t> |
| 2010 | { |
Howard Hinnant | 42a63a7 | 2010-09-21 22:55:27 +0000 | [diff] [blame] | 2011 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 603d2c0 | 2011-05-28 17:59:48 +0000 | [diff] [blame] | 2012 | size_t operator()(long double __v) const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2013 | { |
Howard Hinnant | 62453ea | 2011-12-02 22:52:09 +0000 | [diff] [blame^] | 2014 | union { |
| 2015 | #ifdef __LP64__ |
| 2016 | double __f; |
| 2017 | #else |
| 2018 | float __f; |
| 2019 | #endif |
| 2020 | size_t __d; |
| 2021 | } __u; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2022 | if (__v == 0) |
| 2023 | return 0; |
Howard Hinnant | 62453ea | 2011-12-02 22:52:09 +0000 | [diff] [blame^] | 2024 | __u.__f = __v; |
| 2025 | return __u.__d; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2026 | } |
| 2027 | }; |
| 2028 | |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 2029 | // struct hash<T*> in <memory> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2030 | |
| 2031 | _LIBCPP_END_NAMESPACE_STD |
| 2032 | |
| 2033 | #endif // _LIBCPP_FUNCTIONAL |