blob: d1a6301fb876970379f5f8b79d5278deca0fead7 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===------------------------ functional ----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_FUNCTIONAL
12#define _LIBCPP_FUNCTIONAL
13
14/*
15 functional synopsis
16
17namespace std
18{
19
20template <class Arg, class Result>
21struct unary_function
22{
23 typedef Arg argument_type;
24 typedef Result result_type;
25};
26
27template <class Arg1, class Arg2, class Result>
28struct binary_function
29{
30 typedef Arg1 first_argument_type;
31 typedef Arg2 second_argument_type;
32 typedef Result result_type;
33};
34
Howard Hinnant72552802010-08-20 19:36:46 +000035template <class T>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000036class 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{
40public:
41 // types
42 typedef T type;
43 typedef see below result_type; // Not always defined
44
45 // construct/copy/destroy
Howard Hinnant603d2c02011-05-28 17:59:48 +000046 reference_wrapper(T&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000047 reference_wrapper(T&&) = delete; // do not bind to temps
Howard Hinnant603d2c02011-05-28 17:59:48 +000048 reference_wrapper(const reference_wrapper<T>& x) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000049
50 // assignment
Howard Hinnant603d2c02011-05-28 17:59:48 +000051 reference_wrapper& operator=(const reference_wrapper<T>& x) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000052
53 // access
Howard Hinnant603d2c02011-05-28 17:59:48 +000054 operator T& () const noexcept;
55 T& get() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000056
57 // invoke
58 template <class... ArgTypes>
Howard Hinnant72552802010-08-20 19:36:46 +000059 typename result_of<T(ArgTypes...)>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000060 operator() (ArgTypes&&...) const;
61};
62
Howard Hinnant603d2c02011-05-28 17:59:48 +000063template <class T> reference_wrapper<T> ref(T& t) noexcept;
Howard Hinnant72552802010-08-20 19:36:46 +000064template <class T> void ref(const T&& t) = delete;
Howard Hinnant603d2c02011-05-28 17:59:48 +000065template <class T> reference_wrapper<T> ref(reference_wrapper<T>t) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000066
Howard Hinnant603d2c02011-05-28 17:59:48 +000067template <class T> reference_wrapper<const T> cref(const T& t) noexcept;
Howard Hinnant72552802010-08-20 19:36:46 +000068template <class T> void cref(const T&& t) = delete;
Howard Hinnant603d2c02011-05-28 17:59:48 +000069template <class T> reference_wrapper<const T> cref(reference_wrapper<T> t) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000070
71template <class T>
72struct plus : binary_function<T, T, T>
73{
74 T operator()(const T& x, const T& y) const;
75};
76
77template <class T>
78struct minus : binary_function<T, T, T>
79{
80 T operator()(const T& x, const T& y) const;
81};
82
83template <class T>
84struct multiplies : binary_function<T, T, T>
85{
86 T operator()(const T& x, const T& y) const;
87};
88
89template <class T>
90struct divides : binary_function<T, T, T>
91{
92 T operator()(const T& x, const T& y) const;
93};
94
95template <class T>
96struct modulus : binary_function<T, T, T>
97{
98 T operator()(const T& x, const T& y) const;
99};
100
101template <class T>
102struct negate : unary_function<T, T>
103{
104 T operator()(const T& x) const;
105};
106
107template <class T>
108struct equal_to : binary_function<T, T, bool>
109{
110 bool operator()(const T& x, const T& y) const;
111};
112
113template <class T>
114struct not_equal_to : binary_function<T, T, bool>
115{
116 bool operator()(const T& x, const T& y) const;
117};
118
119template <class T>
120struct greater : binary_function<T, T, bool>
121{
122 bool operator()(const T& x, const T& y) const;
123};
124
125template <class T>
126struct less : binary_function<T, T, bool>
127{
128 bool operator()(const T& x, const T& y) const;
129};
130
131template <class T>
132struct greater_equal : binary_function<T, T, bool>
133{
134 bool operator()(const T& x, const T& y) const;
135};
136
137template <class T>
138struct less_equal : binary_function<T, T, bool>
139{
140 bool operator()(const T& x, const T& y) const;
141};
142
143template <class T>
144struct logical_and : binary_function<T, T, bool>
145{
146 bool operator()(const T& x, const T& y) const;
147};
148
149template <class T>
150struct logical_or : binary_function<T, T, bool>
151{
152 bool operator()(const T& x, const T& y) const;
153};
154
155template <class T>
156struct logical_not : unary_function<T, bool>
157{
158 bool operator()(const T& x) const;
159};
160
161template <class Predicate>
162class unary_negate
163 : public unary_function<typename Predicate::argument_type, bool>
164{
165public:
166 explicit unary_negate(const Predicate& pred);
167 bool operator()(const typename Predicate::argument_type& x) const;
168};
169
170template <class Predicate> unary_negate<Predicate> not1(const Predicate& pred);
171
172template <class Predicate>
173class binary_negate
174 : public binary_function<typename Predicate::first_argument_type,
175 typename Predicate::second_argument_type,
176 bool>
177{
178public:
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
184template <class Predicate> binary_negate<Predicate> not2(const Predicate& pred);
185
186template<class T> struct is_bind_expression;
187template<class T> struct is_placeholder;
188
Howard Hinnant324bb032010-08-22 00:02:43 +0000189template<class Fn, class... BoundArgs>
Howard Hinnant72552802010-08-20 19:36:46 +0000190 unspecified bind(Fn&&, BoundArgs&&...);
Howard Hinnant324bb032010-08-22 00:02:43 +0000191template<class R, class Fn, class... BoundArgs>
Howard Hinnant72552802010-08-20 19:36:46 +0000192 unspecified bind(Fn&&, BoundArgs&&...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000193
Howard Hinnant324bb032010-08-22 00:02:43 +0000194namespace placeholders {
195 // M is the implementation-defined number of placeholders
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000196 extern unspecified _1;
197 extern unspecified _2;
Howard Hinnant324bb032010-08-22 00:02:43 +0000198 .
199 .
200 .
Howard Hinnant99968442011-11-29 18:15:50 +0000201 extern unspecified _Mp;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000202}
203
204template <class Operation>
205class binder1st
206 : public unary_function<typename Operation::second_argument_type,
207 typename Operation::result_type>
208{
209protected:
210 Operation op;
211 typename Operation::first_argument_type value;
212public:
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
218template <class Operation, class T>
219binder1st<Operation> bind1st(const Operation& op, const T& x);
220
221template <class Operation>
222class binder2nd
223 : public unary_function<typename Operation::first_argument_type,
224 typename Operation::result_type>
225{
226protected:
227 Operation op;
228 typename Operation::second_argument_type value;
229public:
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
235template <class Operation, class T>
236binder2nd<Operation> bind2nd(const Operation& op, const T& x);
237
238template <class Arg, class Result>
239class pointer_to_unary_function : public unary_function<Arg, Result>
240{
241public:
242 explicit pointer_to_unary_function(Result (*f)(Arg));
243 Result operator()(Arg x) const;
244};
245
246template <class Arg, class Result>
247pointer_to_unary_function<Arg,Result> ptr_fun(Result (*f)(Arg));
248
249template <class Arg1, class Arg2, class Result>
250class pointer_to_binary_function : public binary_function<Arg1, Arg2, Result>
251{
252public:
253 explicit pointer_to_binary_function(Result (*f)(Arg1, Arg2));
254 Result operator()(Arg1 x, Arg2 y) const;
255};
256
257template <class Arg1, class Arg2, class Result>
258pointer_to_binary_function<Arg1,Arg2,Result> ptr_fun(Result (*f)(Arg1,Arg2));
259
260template<class S, class T>
261class mem_fun_t : public unary_function<T*, S>
262{
263public:
264 explicit mem_fun_t(S (T::*p)());
265 S operator()(T* p) const;
266};
267
268template<class S, class T, class A>
269class mem_fun1_t : public binary_function<T*, A, S>
270{
271public:
272 explicit mem_fun1_t(S (T::*p)(A));
273 S operator()(T* p, A x) const;
274};
275
276template<class S, class T> mem_fun_t<S,T> mem_fun(S (T::*f)());
277template<class S, class T, class A> mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A));
278
279template<class S, class T>
280class mem_fun_ref_t : public unary_function<T, S>
281{
282public:
283 explicit mem_fun_ref_t(S (T::*p)());
284 S operator()(T& p) const;
285};
286
287template<class S, class T, class A>
288class mem_fun1_ref_t : public binary_function<T, A, S>
289{
290public:
291 explicit mem_fun1_ref_t(S (T::*p)(A));
292 S operator()(T& p, A x) const;
293};
294
295template<class S, class T> mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)());
296template<class S, class T, class A> mem_fun1_ref_t<S,T,A> mem_fun_ref(S (T::*f)(A));
297
298template <class S, class T>
299class const_mem_fun_t : public unary_function<const T*, S>
300{
301public:
302 explicit const_mem_fun_t(S (T::*p)() const);
303 S operator()(const T* p) const;
304};
305
306template <class S, class T, class A>
307class const_mem_fun1_t : public binary_function<const T*, A, S>
308{
309public:
310 explicit const_mem_fun1_t(S (T::*p)(A) const);
311 S operator()(const T* p, A x) const;
312};
313
314template <class S, class T> const_mem_fun_t<S,T> mem_fun(S (T::*f)() const);
315template <class S, class T, class A> const_mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A) const);
316
317template <class S, class T>
318class const_mem_fun_ref_t : public unary_function<T, S>
319{
320public:
321 explicit const_mem_fun_ref_t(S (T::*p)() const);
322 S operator()(const T& p) const;
323};
324
325template <class S, class T, class A>
326class const_mem_fun1_ref_t : public binary_function<T, A, S>
327{
328public:
329 explicit const_mem_fun1_ref_t(S (T::*p)(A) const);
330 S operator()(const T& p, A x) const;
331};
332
333template <class S, class T> const_mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)() const);
334template <class S, class T, class A> const_mem_fun1_ref_t<S,T,A> mem_fun_ref(S (T::*f)(A) const);
335
Howard Hinnant72552802010-08-20 19:36:46 +0000336template<class R, class T> unspecified mem_fn(R T::*);
337template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...));
338template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const);
339template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) volatile);
340template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const volatile);
341template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) &);
342template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const &);
343template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) volatile &);
344template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const volatile &);
345template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) &&);
346template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const &&);
347template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) volatile &&);
348template<class R, class T, class... Args> unspecified mem_fn(R (T::*)(Args...) const volatile &&);
349
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000350class bad_function_call
351 : public exception
352{
353};
354
Howard Hinnant72552802010-08-20 19:36:46 +0000355template<class> class function; // undefined
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000356
Howard Hinnant72552802010-08-20 19:36:46 +0000357template<class R, class... ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000358class 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{
364public:
365 typedef R result_type;
366
Howard Hinnant72552802010-08-20 19:36:46 +0000367 // construct/copy/destroy:
Howard Hinnant603d2c02011-05-28 17:59:48 +0000368 function() noexcept;
369 function(nullptr_t) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000370 function(const function&);
Howard Hinnant603d2c02011-05-28 17:59:48 +0000371 function(function&&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000372 template<class F>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000373 function(F);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000374 template<Allocator Alloc>
Howard Hinnant603d2c02011-05-28 17:59:48 +0000375 function(allocator_arg_t, const Alloc&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000376 template<Allocator Alloc>
Howard Hinnant603d2c02011-05-28 17:59:48 +0000377 function(allocator_arg_t, const Alloc&, nullptr_t) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000378 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 Hinnantbc8d3f92010-05-11 19:42:16 +0000384
385 function& operator=(const function&);
Howard Hinnant603d2c02011-05-28 17:59:48 +0000386 function& operator=(function&&) noexcept;
Howard Hinnantad1a5cc2011-05-29 13:53:56 +0000387 function& operator=(nullptr_t) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000388 template<class F>
Howard Hinnant72552802010-08-20 19:36:46 +0000389 function& operator=(F&&);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000390 template<class F>
Howard Hinnant603d2c02011-05-28 17:59:48 +0000391 function& operator=(reference_wrapper<F>) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000392
393 ~function();
394
Howard Hinnant72552802010-08-20 19:36:46 +0000395 // function modifiers:
Howard Hinnant603d2c02011-05-28 17:59:48 +0000396 void swap(function&) noexcept;
Howard Hinnant72552802010-08-20 19:36:46 +0000397 template<class F, class Alloc>
398 void assign(F&&, const Alloc&);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000399
Howard Hinnant72552802010-08-20 19:36:46 +0000400 // function capacity:
Howard Hinnant603d2c02011-05-28 17:59:48 +0000401 explicit operator bool() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000402
Howard Hinnant72552802010-08-20 19:36:46 +0000403 // function invocation:
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000404 R operator()(ArgTypes...) const;
405
Howard Hinnant72552802010-08-20 19:36:46 +0000406 // function target access:
Howard Hinnant603d2c02011-05-28 17:59:48 +0000407 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 Hinnantbc8d3f92010-05-11 19:42:16 +0000410};
411
Howard Hinnant324bb032010-08-22 00:02:43 +0000412// Null pointer comparisons:
413template <class R, class ... ArgTypes>
Howard Hinnant603d2c02011-05-28 17:59:48 +0000414 bool operator==(const function<R(ArgTypes...)>&, nullptr_t) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000415
Howard Hinnant324bb032010-08-22 00:02:43 +0000416template <class R, class ... ArgTypes>
Howard Hinnant603d2c02011-05-28 17:59:48 +0000417 bool operator==(nullptr_t, const function<R(ArgTypes...)>&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000418
Howard Hinnant324bb032010-08-22 00:02:43 +0000419template <class R, class ... ArgTypes>
Howard Hinnant603d2c02011-05-28 17:59:48 +0000420 bool operator!=(const function<R(ArgTypes...)>&, nullptr_t) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000421
Howard Hinnant324bb032010-08-22 00:02:43 +0000422template <class R, class ... ArgTypes>
Howard Hinnant603d2c02011-05-28 17:59:48 +0000423 bool operator!=(nullptr_t, const function<R(ArgTypes...)>&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000424
Howard Hinnant324bb032010-08-22 00:02:43 +0000425// specialized algorithms:
426template <class R, class ... ArgTypes>
Howard Hinnant603d2c02011-05-28 17:59:48 +0000427 void swap(function<R(ArgTypes...)>&, function<R(ArgTypes...)>&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000428
429template <class T> struct hash;
430
431template <> struct hash<bool>;
432template <> struct hash<char>;
433template <> struct hash<signed char>;
434template <> struct hash<unsigned char>;
435template <> struct hash<char16_t>;
436template <> struct hash<char32_t>;
437template <> struct hash<wchar_t>;
438template <> struct hash<short>;
439template <> struct hash<unsigned short>;
440template <> struct hash<int>;
441template <> struct hash<unsigned int>;
442template <> struct hash<long>;
443template <> struct hash<long long>;
444template <> struct hash<unsigned long>;
445template <> struct hash<unsigned long long>;
446
447template <> struct hash<float>;
448template <> struct hash<double>;
449template <> struct hash<long double>;
450
451template<class T> struct hash<T*>;
452
453} // std
454
455POLICY: 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 Hinnant08e17472011-10-17 20:05:10 +0000470#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000471#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000472#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000473
474_LIBCPP_BEGIN_NAMESPACE_STD
475
476template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000477struct _LIBCPP_TYPE_VIS plus : binary_function<_Tp, _Tp, _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000478{
479 _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const
480 {return __x + __y;}
481};
482
483template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000484struct _LIBCPP_TYPE_VIS minus : binary_function<_Tp, _Tp, _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000485{
486 _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const
487 {return __x - __y;}
488};
489
490template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000491struct _LIBCPP_TYPE_VIS multiplies : binary_function<_Tp, _Tp, _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000492{
493 _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const
494 {return __x * __y;}
495};
496
497template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000498struct _LIBCPP_TYPE_VIS divides : binary_function<_Tp, _Tp, _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000499{
500 _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const
501 {return __x / __y;}
502};
503
504template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000505struct _LIBCPP_TYPE_VIS modulus : binary_function<_Tp, _Tp, _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000506{
507 _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const
508 {return __x % __y;}
509};
510
511template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000512struct _LIBCPP_TYPE_VIS negate : unary_function<_Tp, _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000513{
514 _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x) const
515 {return -__x;}
516};
517
518template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000519struct _LIBCPP_TYPE_VIS equal_to : binary_function<_Tp, _Tp, bool>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000520{
521 _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const
522 {return __x == __y;}
523};
524
525template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000526struct _LIBCPP_TYPE_VIS not_equal_to : binary_function<_Tp, _Tp, bool>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000527{
528 _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const
529 {return __x != __y;}
530};
531
532template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000533struct _LIBCPP_TYPE_VIS greater : binary_function<_Tp, _Tp, bool>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000534{
535 _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const
536 {return __x > __y;}
537};
538
Howard Hinnant3fadda32012-02-21 21:02:58 +0000539// less in <__functional_base>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000540
541template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000542struct _LIBCPP_TYPE_VIS greater_equal : binary_function<_Tp, _Tp, bool>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000543{
544 _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const
545 {return __x >= __y;}
546};
547
548template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000549struct _LIBCPP_TYPE_VIS less_equal : binary_function<_Tp, _Tp, bool>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000550{
551 _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const
552 {return __x <= __y;}
553};
554
555template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000556struct _LIBCPP_TYPE_VIS logical_and : binary_function<_Tp, _Tp, bool>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000557{
558 _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const
559 {return __x && __y;}
560};
561
562template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000563struct _LIBCPP_TYPE_VIS logical_or : binary_function<_Tp, _Tp, bool>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000564{
565 _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x, const _Tp& __y) const
566 {return __x || __y;}
567};
568
569template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000570struct _LIBCPP_TYPE_VIS logical_not : unary_function<_Tp, bool>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000571{
572 _LIBCPP_INLINE_VISIBILITY bool operator()(const _Tp& __x) const
573 {return !__x;}
574};
575
576template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000577struct _LIBCPP_TYPE_VIS bit_and : binary_function<_Tp, _Tp, _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000578{
579 _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const
580 {return __x & __y;}
581};
582
583template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000584struct _LIBCPP_TYPE_VIS bit_or : binary_function<_Tp, _Tp, _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000585{
586 _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const
587 {return __x | __y;}
588};
589
590template <class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000591struct _LIBCPP_TYPE_VIS bit_xor : binary_function<_Tp, _Tp, _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000592{
593 _LIBCPP_INLINE_VISIBILITY _Tp operator()(const _Tp& __x, const _Tp& __y) const
594 {return __x ^ __y;}
595};
596
597template <class _Predicate>
Howard Hinnant83eade62013-03-06 23:30:19 +0000598class _LIBCPP_TYPE_VIS unary_negate
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000599 : public unary_function<typename _Predicate::argument_type, bool>
600{
601 _Predicate __pred_;
602public:
603 _LIBCPP_INLINE_VISIBILITY explicit unary_negate(const _Predicate& __pred)
604 : __pred_(__pred) {}
605 _LIBCPP_INLINE_VISIBILITY bool operator()(const typename _Predicate::argument_type& __x) const
606 {return !__pred_(__x);}
607};
608
609template <class _Predicate>
610inline _LIBCPP_INLINE_VISIBILITY
611unary_negate<_Predicate>
612not1(const _Predicate& __pred) {return unary_negate<_Predicate>(__pred);}
613
614template <class _Predicate>
Howard Hinnant83eade62013-03-06 23:30:19 +0000615class _LIBCPP_TYPE_VIS binary_negate
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000616 : public binary_function<typename _Predicate::first_argument_type,
617 typename _Predicate::second_argument_type,
618 bool>
619{
620 _Predicate __pred_;
621public:
622 _LIBCPP_INLINE_VISIBILITY explicit binary_negate(const _Predicate& __pred)
623 : __pred_(__pred) {}
624 _LIBCPP_INLINE_VISIBILITY bool operator()(const typename _Predicate::first_argument_type& __x,
625 const typename _Predicate::second_argument_type& __y) const
626 {return !__pred_(__x, __y);}
627};
628
629template <class _Predicate>
630inline _LIBCPP_INLINE_VISIBILITY
631binary_negate<_Predicate>
632not2(const _Predicate& __pred) {return binary_negate<_Predicate>(__pred);}
633
634template <class __Operation>
Howard Hinnant83eade62013-03-06 23:30:19 +0000635class _LIBCPP_TYPE_VIS binder1st
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000636 : public unary_function<typename __Operation::second_argument_type,
637 typename __Operation::result_type>
638{
639protected:
640 __Operation op;
641 typename __Operation::first_argument_type value;
642public:
643 _LIBCPP_INLINE_VISIBILITY binder1st(const __Operation& __x,
644 const typename __Operation::first_argument_type __y)
645 : op(__x), value(__y) {}
646 _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator()
647 (typename __Operation::second_argument_type& __x) const
648 {return op(value, __x);}
649 _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator()
650 (const typename __Operation::second_argument_type& __x) const
651 {return op(value, __x);}
652};
653
654template <class __Operation, class _Tp>
655inline _LIBCPP_INLINE_VISIBILITY
656binder1st<__Operation>
657bind1st(const __Operation& __op, const _Tp& __x)
658 {return binder1st<__Operation>(__op, __x);}
659
660template <class __Operation>
Howard Hinnant83eade62013-03-06 23:30:19 +0000661class _LIBCPP_TYPE_VIS binder2nd
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000662 : public unary_function<typename __Operation::first_argument_type,
663 typename __Operation::result_type>
664{
665protected:
666 __Operation op;
667 typename __Operation::second_argument_type value;
668public:
Howard Hinnant42a63a72010-09-21 22:55:27 +0000669 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000670 binder2nd(const __Operation& __x, const typename __Operation::second_argument_type __y)
671 : op(__x), value(__y) {}
672 _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator()
673 ( typename __Operation::first_argument_type& __x) const
674 {return op(__x, value);}
675 _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator()
676 (const typename __Operation::first_argument_type& __x) const
677 {return op(__x, value);}
678};
679
680template <class __Operation, class _Tp>
681inline _LIBCPP_INLINE_VISIBILITY
682binder2nd<__Operation>
683bind2nd(const __Operation& __op, const _Tp& __x)
684 {return binder2nd<__Operation>(__op, __x);}
685
686template <class _Arg, class _Result>
Howard Hinnant83eade62013-03-06 23:30:19 +0000687class _LIBCPP_TYPE_VIS pointer_to_unary_function
Howard Hinnant42a63a72010-09-21 22:55:27 +0000688 : public unary_function<_Arg, _Result>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000689{
690 _Result (*__f_)(_Arg);
691public:
692 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg))
693 : __f_(__f) {}
694 _LIBCPP_INLINE_VISIBILITY _Result operator()(_Arg __x) const
695 {return __f_(__x);}
696};
697
698template <class _Arg, class _Result>
699inline _LIBCPP_INLINE_VISIBILITY
700pointer_to_unary_function<_Arg,_Result>
701ptr_fun(_Result (*__f)(_Arg))
702 {return pointer_to_unary_function<_Arg,_Result>(__f);}
703
704template <class _Arg1, class _Arg2, class _Result>
Howard Hinnant83eade62013-03-06 23:30:19 +0000705class _LIBCPP_TYPE_VIS pointer_to_binary_function
Howard Hinnant42a63a72010-09-21 22:55:27 +0000706 : public binary_function<_Arg1, _Arg2, _Result>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000707{
708 _Result (*__f_)(_Arg1, _Arg2);
709public:
710 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2))
711 : __f_(__f) {}
712 _LIBCPP_INLINE_VISIBILITY _Result operator()(_Arg1 __x, _Arg2 __y) const
713 {return __f_(__x, __y);}
714};
715
716template <class _Arg1, class _Arg2, class _Result>
717inline _LIBCPP_INLINE_VISIBILITY
718pointer_to_binary_function<_Arg1,_Arg2,_Result>
719ptr_fun(_Result (*__f)(_Arg1,_Arg2))
720 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);}
721
722template<class _Sp, class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000723class _LIBCPP_TYPE_VIS mem_fun_t : public unary_function<_Tp*, _Sp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000724{
725 _Sp (_Tp::*__p_)();
726public:
727 _LIBCPP_INLINE_VISIBILITY explicit mem_fun_t(_Sp (_Tp::*__p)())
728 : __p_(__p) {}
729 _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp* __p) const
730 {return (__p->*__p_)();}
731};
732
733template<class _Sp, class _Tp, class _Ap>
Howard Hinnant83eade62013-03-06 23:30:19 +0000734class _LIBCPP_TYPE_VIS mem_fun1_t : public binary_function<_Tp*, _Ap, _Sp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000735{
736 _Sp (_Tp::*__p_)(_Ap);
737public:
738 _LIBCPP_INLINE_VISIBILITY explicit mem_fun1_t(_Sp (_Tp::*__p)(_Ap))
739 : __p_(__p) {}
740 _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp* __p, _Ap __x) const
741 {return (__p->*__p_)(__x);}
742};
743
744template<class _Sp, class _Tp>
745inline _LIBCPP_INLINE_VISIBILITY
746mem_fun_t<_Sp,_Tp>
747mem_fun(_Sp (_Tp::*__f)())
748 {return mem_fun_t<_Sp,_Tp>(__f);}
749
750template<class _Sp, class _Tp, class _Ap>
751inline _LIBCPP_INLINE_VISIBILITY
752mem_fun1_t<_Sp,_Tp,_Ap>
753mem_fun(_Sp (_Tp::*__f)(_Ap))
754 {return mem_fun1_t<_Sp,_Tp,_Ap>(__f);}
755
756template<class _Sp, class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000757class _LIBCPP_TYPE_VIS mem_fun_ref_t : public unary_function<_Tp, _Sp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000758{
759 _Sp (_Tp::*__p_)();
760public:
761 _LIBCPP_INLINE_VISIBILITY explicit mem_fun_ref_t(_Sp (_Tp::*__p)())
762 : __p_(__p) {}
763 _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp& __p) const
764 {return (__p.*__p_)();}
765};
766
767template<class _Sp, class _Tp, class _Ap>
Howard Hinnant83eade62013-03-06 23:30:19 +0000768class _LIBCPP_TYPE_VIS mem_fun1_ref_t : public binary_function<_Tp, _Ap, _Sp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000769{
770 _Sp (_Tp::*__p_)(_Ap);
771public:
772 _LIBCPP_INLINE_VISIBILITY explicit mem_fun1_ref_t(_Sp (_Tp::*__p)(_Ap))
773 : __p_(__p) {}
774 _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp& __p, _Ap __x) const
775 {return (__p.*__p_)(__x);}
776};
777
778template<class _Sp, class _Tp>
779inline _LIBCPP_INLINE_VISIBILITY
780mem_fun_ref_t<_Sp,_Tp>
781mem_fun_ref(_Sp (_Tp::*__f)())
782 {return mem_fun_ref_t<_Sp,_Tp>(__f);}
783
784template<class _Sp, class _Tp, class _Ap>
785inline _LIBCPP_INLINE_VISIBILITY
786mem_fun1_ref_t<_Sp,_Tp,_Ap>
787mem_fun_ref(_Sp (_Tp::*__f)(_Ap))
788 {return mem_fun1_ref_t<_Sp,_Tp,_Ap>(__f);}
789
790template <class _Sp, class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000791class _LIBCPP_TYPE_VIS const_mem_fun_t : public unary_function<const _Tp*, _Sp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000792{
793 _Sp (_Tp::*__p_)() const;
794public:
795 _LIBCPP_INLINE_VISIBILITY explicit const_mem_fun_t(_Sp (_Tp::*__p)() const)
796 : __p_(__p) {}
797 _LIBCPP_INLINE_VISIBILITY _Sp operator()(const _Tp* __p) const
798 {return (__p->*__p_)();}
799};
800
801template <class _Sp, class _Tp, class _Ap>
Howard Hinnant83eade62013-03-06 23:30:19 +0000802class _LIBCPP_TYPE_VIS const_mem_fun1_t : public binary_function<const _Tp*, _Ap, _Sp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000803{
804 _Sp (_Tp::*__p_)(_Ap) const;
805public:
806 _LIBCPP_INLINE_VISIBILITY explicit const_mem_fun1_t(_Sp (_Tp::*__p)(_Ap) const)
807 : __p_(__p) {}
808 _LIBCPP_INLINE_VISIBILITY _Sp operator()(const _Tp* __p, _Ap __x) const
809 {return (__p->*__p_)(__x);}
810};
811
812template <class _Sp, class _Tp>
813inline _LIBCPP_INLINE_VISIBILITY
814const_mem_fun_t<_Sp,_Tp>
815mem_fun(_Sp (_Tp::*__f)() const)
816 {return const_mem_fun_t<_Sp,_Tp>(__f);}
817
818template <class _Sp, class _Tp, class _Ap>
819inline _LIBCPP_INLINE_VISIBILITY
820const_mem_fun1_t<_Sp,_Tp,_Ap>
821mem_fun(_Sp (_Tp::*__f)(_Ap) const)
822 {return const_mem_fun1_t<_Sp,_Tp,_Ap>(__f);}
823
824template <class _Sp, class _Tp>
Howard Hinnant83eade62013-03-06 23:30:19 +0000825class _LIBCPP_TYPE_VIS const_mem_fun_ref_t : public unary_function<_Tp, _Sp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000826{
827 _Sp (_Tp::*__p_)() const;
828public:
829 _LIBCPP_INLINE_VISIBILITY explicit const_mem_fun_ref_t(_Sp (_Tp::*__p)() const)
830 : __p_(__p) {}
831 _LIBCPP_INLINE_VISIBILITY _Sp operator()(const _Tp& __p) const
832 {return (__p.*__p_)();}
833};
834
835template <class _Sp, class _Tp, class _Ap>
Howard Hinnant83eade62013-03-06 23:30:19 +0000836class _LIBCPP_TYPE_VIS const_mem_fun1_ref_t
Howard Hinnant42a63a72010-09-21 22:55:27 +0000837 : public binary_function<_Tp, _Ap, _Sp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000838{
839 _Sp (_Tp::*__p_)(_Ap) const;
840public:
841 _LIBCPP_INLINE_VISIBILITY explicit const_mem_fun1_ref_t(_Sp (_Tp::*__p)(_Ap) const)
842 : __p_(__p) {}
843 _LIBCPP_INLINE_VISIBILITY _Sp operator()(const _Tp& __p, _Ap __x) const
844 {return (__p.*__p_)(__x);}
845};
846
847template <class _Sp, class _Tp>
848inline _LIBCPP_INLINE_VISIBILITY
849const_mem_fun_ref_t<_Sp,_Tp>
850mem_fun_ref(_Sp (_Tp::*__f)() const)
851 {return const_mem_fun_ref_t<_Sp,_Tp>(__f);}
852
853template <class _Sp, class _Tp, class _Ap>
854inline _LIBCPP_INLINE_VISIBILITY
855const_mem_fun1_ref_t<_Sp,_Tp,_Ap>
856mem_fun_ref(_Sp (_Tp::*__f)(_Ap) const)
857 {return const_mem_fun1_ref_t<_Sp,_Tp,_Ap>(__f);}
858
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000859#ifdef _LIBCPP_HAS_NO_VARIADICS
860
861#include <__functional_03>
862
863#else // _LIBCPP_HAS_NO_VARIADICS
864
865template <class _Tp>
866class __mem_fn
867 : public __weak_result_type<_Tp>
868{
869public:
870 // types
871 typedef _Tp type;
872private:
873 type __f_;
874
875public:
876 _LIBCPP_INLINE_VISIBILITY __mem_fn(type __f) : __f_(__f) {}
877
878 // invoke
879 template <class... _ArgTypes>
Howard Hinnant42a63a72010-09-21 22:55:27 +0000880 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000881 typename __invoke_return<type, _ArgTypes...>::type
882 operator() (_ArgTypes&&... __args)
883 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000884 return __invoke(__f_, _VSTD::forward<_ArgTypes>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000885 }
886};
887
Howard Hinnant99968442011-11-29 18:15:50 +0000888template<class _Rp, class _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000889inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +0000890__mem_fn<_Rp _Tp::*>
891mem_fn(_Rp _Tp::* __pm)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000892{
Howard Hinnant99968442011-11-29 18:15:50 +0000893 return __mem_fn<_Rp _Tp::*>(__pm);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000894}
895
Howard Hinnant99968442011-11-29 18:15:50 +0000896template<class _Rp, class _Tp, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000897inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +0000898__mem_fn<_Rp (_Tp::*)(_Args...)>
899mem_fn(_Rp (_Tp::* __pm)(_Args...))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000900{
Howard Hinnant99968442011-11-29 18:15:50 +0000901 return __mem_fn<_Rp (_Tp::*)(_Args...)>(__pm);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000902}
903
Howard Hinnant99968442011-11-29 18:15:50 +0000904template<class _Rp, class _Tp, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000905inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +0000906__mem_fn<_Rp (_Tp::*)(_Args...) const>
907mem_fn(_Rp (_Tp::* __pm)(_Args...) const)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000908{
Howard Hinnant99968442011-11-29 18:15:50 +0000909 return __mem_fn<_Rp (_Tp::*)(_Args...) const>(__pm);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000910}
911
Howard Hinnant99968442011-11-29 18:15:50 +0000912template<class _Rp, class _Tp, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000913inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +0000914__mem_fn<_Rp (_Tp::*)(_Args...) volatile>
915mem_fn(_Rp (_Tp::* __pm)(_Args...) volatile)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000916{
Howard Hinnant99968442011-11-29 18:15:50 +0000917 return __mem_fn<_Rp (_Tp::*)(_Args...) volatile>(__pm);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000918}
919
Howard Hinnant99968442011-11-29 18:15:50 +0000920template<class _Rp, class _Tp, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000921inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +0000922__mem_fn<_Rp (_Tp::*)(_Args...) const volatile>
923mem_fn(_Rp (_Tp::* __pm)(_Args...) const volatile)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000924{
Howard Hinnant99968442011-11-29 18:15:50 +0000925 return __mem_fn<_Rp (_Tp::*)(_Args...) const volatile>(__pm);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000926}
927
928// bad_function_call
929
Howard Hinnant42a63a72010-09-21 22:55:27 +0000930class _LIBCPP_EXCEPTION_ABI bad_function_call
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000931 : public exception
932{
933};
934
Howard Hinnant83eade62013-03-06 23:30:19 +0000935template<class _Fp> class _LIBCPP_TYPE_VIS function; // undefined
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000936
937namespace __function
938{
939
Howard Hinnant99968442011-11-29 18:15:50 +0000940template<class _Rp, class ..._ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000941struct __maybe_derive_from_unary_function
942{
943};
944
Howard Hinnant99968442011-11-29 18:15:50 +0000945template<class _Rp, class _A1>
946struct __maybe_derive_from_unary_function<_Rp(_A1)>
947 : public unary_function<_A1, _Rp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000948{
949};
950
Howard Hinnant99968442011-11-29 18:15:50 +0000951template<class _Rp, class ..._ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000952struct __maybe_derive_from_binary_function
953{
954};
955
Howard Hinnant99968442011-11-29 18:15:50 +0000956template<class _Rp, class _A1, class _A2>
957struct __maybe_derive_from_binary_function<_Rp(_A1, _A2)>
958 : public binary_function<_A1, _A2, _Rp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000959{
960};
961
962template<class _Fp> class __base;
963
Howard Hinnant99968442011-11-29 18:15:50 +0000964template<class _Rp, class ..._ArgTypes>
965class __base<_Rp(_ArgTypes...)>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000966{
967 __base(const __base&);
968 __base& operator=(const __base&);
969public:
Howard Hinnant42a63a72010-09-21 22:55:27 +0000970 _LIBCPP_INLINE_VISIBILITY __base() {}
971 _LIBCPP_INLINE_VISIBILITY virtual ~__base() {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000972 virtual __base* __clone() const = 0;
973 virtual void __clone(__base*) const = 0;
Howard Hinnant603d2c02011-05-28 17:59:48 +0000974 virtual void destroy() _NOEXCEPT = 0;
975 virtual void destroy_deallocate() _NOEXCEPT = 0;
Howard Hinnant99968442011-11-29 18:15:50 +0000976 virtual _Rp operator()(_ArgTypes&& ...) = 0;
Howard Hinnantd4444702010-08-11 17:04:31 +0000977#ifndef _LIBCPP_NO_RTTI
Howard Hinnant603d2c02011-05-28 17:59:48 +0000978 virtual const void* target(const type_info&) const _NOEXCEPT = 0;
979 virtual const std::type_info& target_type() const _NOEXCEPT = 0;
Howard Hinnant324bb032010-08-22 00:02:43 +0000980#endif // _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000981};
982
983template<class _FD, class _Alloc, class _FB> class __func;
984
Howard Hinnant99968442011-11-29 18:15:50 +0000985template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes>
986class __func<_Fp, _Alloc, _Rp(_ArgTypes...)>
987 : public __base<_Rp(_ArgTypes...)>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000988{
Howard Hinnant99968442011-11-29 18:15:50 +0000989 __compressed_pair<_Fp, _Alloc> __f_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000990public:
Howard Hinnant42a63a72010-09-21 22:55:27 +0000991 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant4a13b2d2012-02-28 19:47:38 +0000992 explicit __func(_Fp&& __f)
993 : __f_(piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__f)),
994 _VSTD::forward_as_tuple()) {}
Howard Hinnant42a63a72010-09-21 22:55:27 +0000995 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant4a13b2d2012-02-28 19:47:38 +0000996 explicit __func(const _Fp& __f, const _Alloc& __a)
997 : __f_(piecewise_construct, _VSTD::forward_as_tuple(__f),
998 _VSTD::forward_as_tuple(__a)) {}
999
1000 _LIBCPP_INLINE_VISIBILITY
1001 explicit __func(const _Fp& __f, _Alloc&& __a)
1002 : __f_(piecewise_construct, _VSTD::forward_as_tuple(__f),
1003 _VSTD::forward_as_tuple(_VSTD::move(__a))) {}
1004
1005 _LIBCPP_INLINE_VISIBILITY
1006 explicit __func(_Fp&& __f, _Alloc&& __a)
1007 : __f_(piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__f)),
1008 _VSTD::forward_as_tuple(_VSTD::move(__a))) {}
Howard Hinnant99968442011-11-29 18:15:50 +00001009 virtual __base<_Rp(_ArgTypes...)>* __clone() const;
1010 virtual void __clone(__base<_Rp(_ArgTypes...)>*) const;
Howard Hinnant603d2c02011-05-28 17:59:48 +00001011 virtual void destroy() _NOEXCEPT;
1012 virtual void destroy_deallocate() _NOEXCEPT;
Howard Hinnant99968442011-11-29 18:15:50 +00001013 virtual _Rp operator()(_ArgTypes&& ... __arg);
Howard Hinnantd4444702010-08-11 17:04:31 +00001014#ifndef _LIBCPP_NO_RTTI
Howard Hinnant603d2c02011-05-28 17:59:48 +00001015 virtual const void* target(const type_info&) const _NOEXCEPT;
1016 virtual const std::type_info& target_type() const _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00001017#endif // _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001018};
1019
Howard Hinnant99968442011-11-29 18:15:50 +00001020template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes>
1021__base<_Rp(_ArgTypes...)>*
1022__func<_Fp, _Alloc, _Rp(_ArgTypes...)>::__clone() const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001023{
Howard Hinnant99968442011-11-29 18:15:50 +00001024 typedef typename _Alloc::template rebind<__func>::other _Ap;
1025 _Ap __a(__f_.second());
1026 typedef __allocator_destructor<_Ap> _Dp;
1027 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001028 ::new (__hold.get()) __func(__f_.first(), _Alloc(__a));
1029 return __hold.release();
1030}
1031
Howard Hinnant99968442011-11-29 18:15:50 +00001032template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001033void
Howard Hinnant99968442011-11-29 18:15:50 +00001034__func<_Fp, _Alloc, _Rp(_ArgTypes...)>::__clone(__base<_Rp(_ArgTypes...)>* __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001035{
1036 ::new (__p) __func(__f_.first(), __f_.second());
1037}
1038
Howard Hinnant99968442011-11-29 18:15:50 +00001039template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001040void
Howard Hinnant99968442011-11-29 18:15:50 +00001041__func<_Fp, _Alloc, _Rp(_ArgTypes...)>::destroy() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001042{
Howard Hinnant99968442011-11-29 18:15:50 +00001043 __f_.~__compressed_pair<_Fp, _Alloc>();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001044}
1045
Howard Hinnant99968442011-11-29 18:15:50 +00001046template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001047void
Howard Hinnant99968442011-11-29 18:15:50 +00001048__func<_Fp, _Alloc, _Rp(_ArgTypes...)>::destroy_deallocate() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001049{
Howard Hinnant99968442011-11-29 18:15:50 +00001050 typedef typename _Alloc::template rebind<__func>::other _Ap;
1051 _Ap __a(__f_.second());
1052 __f_.~__compressed_pair<_Fp, _Alloc>();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001053 __a.deallocate(this, 1);
1054}
1055
Howard Hinnant99968442011-11-29 18:15:50 +00001056template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes>
1057_Rp
1058__func<_Fp, _Alloc, _Rp(_ArgTypes...)>::operator()(_ArgTypes&& ... __arg)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001059{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001060 return __invoke(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001061}
1062
Howard Hinnantd4444702010-08-11 17:04:31 +00001063#ifndef _LIBCPP_NO_RTTI
1064
Howard Hinnant99968442011-11-29 18:15:50 +00001065template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001066const void*
Howard Hinnant99968442011-11-29 18:15:50 +00001067__func<_Fp, _Alloc, _Rp(_ArgTypes...)>::target(const type_info& __ti) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001068{
Howard Hinnant99968442011-11-29 18:15:50 +00001069 if (__ti == typeid(_Fp))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001070 return &__f_.first();
1071 return (const void*)0;
1072}
1073
Howard Hinnant99968442011-11-29 18:15:50 +00001074template<class _Fp, class _Alloc, class _Rp, class ..._ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001075const std::type_info&
Howard Hinnant99968442011-11-29 18:15:50 +00001076__func<_Fp, _Alloc, _Rp(_ArgTypes...)>::target_type() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001077{
Howard Hinnant99968442011-11-29 18:15:50 +00001078 return typeid(_Fp);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001079}
1080
Howard Hinnant324bb032010-08-22 00:02:43 +00001081#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00001082
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001083} // __function
1084
Howard Hinnant99968442011-11-29 18:15:50 +00001085template<class _Rp, class ..._ArgTypes>
Howard Hinnant83eade62013-03-06 23:30:19 +00001086class _LIBCPP_TYPE_VIS function<_Rp(_ArgTypes...)>
Howard Hinnant99968442011-11-29 18:15:50 +00001087 : public __function::__maybe_derive_from_unary_function<_Rp(_ArgTypes...)>,
1088 public __function::__maybe_derive_from_binary_function<_Rp(_ArgTypes...)>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001089{
Howard Hinnant99968442011-11-29 18:15:50 +00001090 typedef __function::__base<_Rp(_ArgTypes...)> __base;
Howard Hinnant78f0de22013-01-21 17:26:55 +00001091 typename aligned_storage<3*sizeof(void*)>::type __buf_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001092 __base* __f_;
1093
Howard Hinnant99968442011-11-29 18:15:50 +00001094 template <class _Fp>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001095 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001096 static bool __not_null(const _Fp&) {return true;}
1097 template <class _R2, class ..._Ap>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001098 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001099 static bool __not_null(_R2 (*__p)(_Ap...)) {return __p;}
1100 template <class _R2, class _Cp, class ..._Ap>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001101 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001102 static bool __not_null(_R2 (_Cp::*__p)(_Ap...)) {return __p;}
1103 template <class _R2, class _Cp, class ..._Ap>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001104 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001105 static bool __not_null(_R2 (_Cp::*__p)(_Ap...) const) {return __p;}
1106 template <class _R2, class _Cp, class ..._Ap>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001107 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001108 static bool __not_null(_R2 (_Cp::*__p)(_Ap...) volatile) {return __p;}
1109 template <class _R2, class _Cp, class ..._Ap>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001110 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001111 static bool __not_null(_R2 (_Cp::*__p)(_Ap...) const volatile) {return __p;}
1112 template <class _R2, class ..._Ap>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001113 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001114 static bool __not_null(const function<_Rp(_Ap...)>& __p) {return __p;}
Howard Hinnant083ba5f2011-05-31 21:45:26 +00001115
Howard Hinnante41f4752012-07-20 18:56:07 +00001116 template <class _Fp, bool = !is_same<_Fp, function>::value &&
1117 __invokable<_Fp&, _ArgTypes...>::value>
Howard Hinnant083ba5f2011-05-31 21:45:26 +00001118 struct __callable;
Howard Hinnant99968442011-11-29 18:15:50 +00001119 template <class _Fp>
1120 struct __callable<_Fp, true>
Howard Hinnant083ba5f2011-05-31 21:45:26 +00001121 {
1122 static const bool value =
Howard Hinnant99968442011-11-29 18:15:50 +00001123 is_convertible<typename __invoke_of<_Fp&, _ArgTypes...>::type,
1124 _Rp>::value;
Howard Hinnant083ba5f2011-05-31 21:45:26 +00001125 };
Howard Hinnant99968442011-11-29 18:15:50 +00001126 template <class _Fp>
1127 struct __callable<_Fp, false>
Howard Hinnant083ba5f2011-05-31 21:45:26 +00001128 {
1129 static const bool value = false;
1130 };
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001131public:
Howard Hinnant99968442011-11-29 18:15:50 +00001132 typedef _Rp result_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001133
Howard Hinnant72552802010-08-20 19:36:46 +00001134 // construct/copy/destroy:
Howard Hinnant42a63a72010-09-21 22:55:27 +00001135 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001136 function() _NOEXCEPT : __f_(0) {}
Howard Hinnant42a63a72010-09-21 22:55:27 +00001137 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001138 function(nullptr_t) _NOEXCEPT : __f_(0) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001139 function(const function&);
Howard Hinnant603d2c02011-05-28 17:59:48 +00001140 function(function&&) _NOEXCEPT;
Howard Hinnant99968442011-11-29 18:15:50 +00001141 template<class _Fp>
Howard Hinnant099dec12013-07-01 00:01:51 +00001142 function(_Fp, typename enable_if
1143 <
1144 __callable<_Fp>::value &&
1145 !is_same<_Fp, function>::value
1146 >::type* = 0);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001147
Howard Hinnant72552802010-08-20 19:36:46 +00001148 template<class _Alloc>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001149 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001150 function(allocator_arg_t, const _Alloc&) _NOEXCEPT : __f_(0) {}
Howard Hinnant72552802010-08-20 19:36:46 +00001151 template<class _Alloc>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001152 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001153 function(allocator_arg_t, const _Alloc&, nullptr_t) _NOEXCEPT : __f_(0) {}
Howard Hinnant72552802010-08-20 19:36:46 +00001154 template<class _Alloc>
1155 function(allocator_arg_t, const _Alloc&, const function&);
1156 template<class _Alloc>
1157 function(allocator_arg_t, const _Alloc&, function&&);
Howard Hinnant99968442011-11-29 18:15:50 +00001158 template<class _Fp, class _Alloc>
1159 function(allocator_arg_t, const _Alloc& __a, _Fp __f,
1160 typename enable_if<__callable<_Fp>::value>::type* = 0);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001161
1162 function& operator=(const function&);
Howard Hinnant603d2c02011-05-28 17:59:48 +00001163 function& operator=(function&&) _NOEXCEPT;
1164 function& operator=(nullptr_t) _NOEXCEPT;
Howard Hinnant99968442011-11-29 18:15:50 +00001165 template<class _Fp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001166 typename enable_if
1167 <
Howard Hinnant099dec12013-07-01 00:01:51 +00001168 __callable<typename decay<_Fp>::type>::value &&
1169 !is_same<typename remove_reference<_Fp>::type, function>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001170 function&
1171 >::type
Howard Hinnant99968442011-11-29 18:15:50 +00001172 operator=(_Fp&&);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001173
1174 ~function();
1175
Howard Hinnant72552802010-08-20 19:36:46 +00001176 // function modifiers:
Howard Hinnant603d2c02011-05-28 17:59:48 +00001177 void swap(function&) _NOEXCEPT;
Howard Hinnant99968442011-11-29 18:15:50 +00001178 template<class _Fp, class _Alloc>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001179 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001180 void assign(_Fp&& __f, const _Alloc& __a)
1181 {function(allocator_arg, __a, _VSTD::forward<_Fp>(__f)).swap(*this);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001182
Howard Hinnant72552802010-08-20 19:36:46 +00001183 // function capacity:
Howard Hinnant42a63a72010-09-21 22:55:27 +00001184 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant77861882012-02-21 21:46:43 +00001185 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT {return __f_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001186
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001187 // deleted overloads close possible hole in the type system
1188 template<class _R2, class... _ArgTypes2>
Howard Hinnanta0f1dc92010-09-11 15:33:21 +00001189 bool operator==(const function<_R2(_ArgTypes2...)>&) const = delete;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001190 template<class _R2, class... _ArgTypes2>
Howard Hinnanta0f1dc92010-09-11 15:33:21 +00001191 bool operator!=(const function<_R2(_ArgTypes2...)>&) const = delete;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001192public:
Howard Hinnant72552802010-08-20 19:36:46 +00001193 // function invocation:
Howard Hinnant99968442011-11-29 18:15:50 +00001194 _Rp operator()(_ArgTypes...) const;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001195
Howard Hinnantd4444702010-08-11 17:04:31 +00001196#ifndef _LIBCPP_NO_RTTI
Howard Hinnant72552802010-08-20 19:36:46 +00001197 // function target access:
Howard Hinnant603d2c02011-05-28 17:59:48 +00001198 const std::type_info& target_type() const _NOEXCEPT;
Howard Hinnant99968442011-11-29 18:15:50 +00001199 template <typename _Tp> _Tp* target() _NOEXCEPT;
1200 template <typename _Tp> const _Tp* target() const _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00001201#endif // _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001202};
1203
Howard Hinnant99968442011-11-29 18:15:50 +00001204template<class _Rp, class ..._ArgTypes>
1205function<_Rp(_ArgTypes...)>::function(const function& __f)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001206{
1207 if (__f.__f_ == 0)
1208 __f_ = 0;
1209 else if (__f.__f_ == (const __base*)&__f.__buf_)
1210 {
1211 __f_ = (__base*)&__buf_;
1212 __f.__f_->__clone(__f_);
1213 }
1214 else
1215 __f_ = __f.__f_->__clone();
1216}
1217
Howard Hinnant99968442011-11-29 18:15:50 +00001218template<class _Rp, class ..._ArgTypes>
Howard Hinnant72552802010-08-20 19:36:46 +00001219template <class _Alloc>
Howard Hinnant99968442011-11-29 18:15:50 +00001220function<_Rp(_ArgTypes...)>::function(allocator_arg_t, const _Alloc&,
Howard Hinnant72552802010-08-20 19:36:46 +00001221 const function& __f)
1222{
1223 if (__f.__f_ == 0)
1224 __f_ = 0;
1225 else if (__f.__f_ == (const __base*)&__f.__buf_)
1226 {
1227 __f_ = (__base*)&__buf_;
1228 __f.__f_->__clone(__f_);
1229 }
1230 else
1231 __f_ = __f.__f_->__clone();
1232}
1233
Howard Hinnant99968442011-11-29 18:15:50 +00001234template<class _Rp, class ..._ArgTypes>
1235function<_Rp(_ArgTypes...)>::function(function&& __f) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001236{
1237 if (__f.__f_ == 0)
1238 __f_ = 0;
1239 else if (__f.__f_ == (__base*)&__f.__buf_)
1240 {
1241 __f_ = (__base*)&__buf_;
1242 __f.__f_->__clone(__f_);
1243 }
1244 else
1245 {
1246 __f_ = __f.__f_;
1247 __f.__f_ = 0;
1248 }
1249}
1250
Howard Hinnant99968442011-11-29 18:15:50 +00001251template<class _Rp, class ..._ArgTypes>
Howard Hinnant72552802010-08-20 19:36:46 +00001252template <class _Alloc>
Howard Hinnant99968442011-11-29 18:15:50 +00001253function<_Rp(_ArgTypes...)>::function(allocator_arg_t, const _Alloc&,
Howard Hinnant72552802010-08-20 19:36:46 +00001254 function&& __f)
1255{
1256 if (__f.__f_ == 0)
1257 __f_ = 0;
1258 else if (__f.__f_ == (__base*)&__f.__buf_)
1259 {
1260 __f_ = (__base*)&__buf_;
1261 __f.__f_->__clone(__f_);
1262 }
1263 else
1264 {
1265 __f_ = __f.__f_;
1266 __f.__f_ = 0;
1267 }
1268}
1269
Howard Hinnant99968442011-11-29 18:15:50 +00001270template<class _Rp, class ..._ArgTypes>
1271template <class _Fp>
1272function<_Rp(_ArgTypes...)>::function(_Fp __f,
Howard Hinnant099dec12013-07-01 00:01:51 +00001273 typename enable_if
1274 <
1275 __callable<_Fp>::value &&
1276 !is_same<_Fp, function>::value
1277 >::type*)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001278 : __f_(0)
1279{
1280 if (__not_null(__f))
1281 {
Howard Hinnant99968442011-11-29 18:15:50 +00001282 typedef __function::__func<_Fp, allocator<_Fp>, _Rp(_ArgTypes...)> _FF;
1283 if (sizeof(_FF) <= sizeof(__buf_) && is_nothrow_copy_constructible<_Fp>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001284 {
1285 __f_ = (__base*)&__buf_;
Howard Hinnant0949eed2011-06-30 21:18:19 +00001286 ::new (__f_) _FF(_VSTD::move(__f));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001287 }
1288 else
1289 {
Howard Hinnant99968442011-11-29 18:15:50 +00001290 typedef allocator<_FF> _Ap;
1291 _Ap __a;
1292 typedef __allocator_destructor<_Ap> _Dp;
1293 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1294 ::new (__hold.get()) _FF(_VSTD::move(__f), allocator<_Fp>(__a));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001295 __f_ = __hold.release();
1296 }
1297 }
1298}
1299
Howard Hinnant99968442011-11-29 18:15:50 +00001300template<class _Rp, class ..._ArgTypes>
1301template <class _Fp, class _Alloc>
1302function<_Rp(_ArgTypes...)>::function(allocator_arg_t, const _Alloc& __a0, _Fp __f,
1303 typename enable_if<__callable<_Fp>::value>::type*)
Howard Hinnant72552802010-08-20 19:36:46 +00001304 : __f_(0)
1305{
1306 typedef allocator_traits<_Alloc> __alloc_traits;
1307 if (__not_null(__f))
1308 {
Howard Hinnant99968442011-11-29 18:15:50 +00001309 typedef __function::__func<_Fp, _Alloc, _Rp(_ArgTypes...)> _FF;
1310 if (sizeof(_FF) <= sizeof(__buf_) && is_nothrow_copy_constructible<_Fp>::value)
Howard Hinnant72552802010-08-20 19:36:46 +00001311 {
1312 __f_ = (__base*)&__buf_;
Howard Hinnant0949eed2011-06-30 21:18:19 +00001313 ::new (__f_) _FF(_VSTD::move(__f));
Howard Hinnant72552802010-08-20 19:36:46 +00001314 }
1315 else
1316 {
1317 typedef typename __alloc_traits::template
1318#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1319 rebind_alloc<_FF>
1320#else
1321 rebind_alloc<_FF>::other
1322#endif
Howard Hinnant99968442011-11-29 18:15:50 +00001323 _Ap;
1324 _Ap __a(__a0);
1325 typedef __allocator_destructor<_Ap> _Dp;
1326 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00001327 ::new (__hold.get()) _FF(_VSTD::move(__f), _Alloc(__a));
Howard Hinnant72552802010-08-20 19:36:46 +00001328 __f_ = __hold.release();
1329 }
1330 }
1331}
1332
Howard Hinnant99968442011-11-29 18:15:50 +00001333template<class _Rp, class ..._ArgTypes>
1334function<_Rp(_ArgTypes...)>&
1335function<_Rp(_ArgTypes...)>::operator=(const function& __f)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001336{
1337 function(__f).swap(*this);
1338 return *this;
1339}
1340
Howard Hinnant99968442011-11-29 18:15:50 +00001341template<class _Rp, class ..._ArgTypes>
1342function<_Rp(_ArgTypes...)>&
1343function<_Rp(_ArgTypes...)>::operator=(function&& __f) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001344{
1345 if (__f_ == (__base*)&__buf_)
1346 __f_->destroy();
1347 else if (__f_)
1348 __f_->destroy_deallocate();
1349 __f_ = 0;
1350 if (__f.__f_ == 0)
1351 __f_ = 0;
1352 else if (__f.__f_ == (__base*)&__f.__buf_)
1353 {
1354 __f_ = (__base*)&__buf_;
1355 __f.__f_->__clone(__f_);
1356 }
1357 else
1358 {
1359 __f_ = __f.__f_;
1360 __f.__f_ = 0;
1361 }
Argyrios Kyrtzidis1dc6f7a2012-10-13 02:03:45 +00001362 return *this;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001363}
1364
Howard Hinnant99968442011-11-29 18:15:50 +00001365template<class _Rp, class ..._ArgTypes>
1366function<_Rp(_ArgTypes...)>&
1367function<_Rp(_ArgTypes...)>::operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001368{
1369 if (__f_ == (__base*)&__buf_)
1370 __f_->destroy();
1371 else if (__f_)
1372 __f_->destroy_deallocate();
1373 __f_ = 0;
Argyrios Kyrtzidis1dc6f7a2012-10-13 02:03:45 +00001374 return *this;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001375}
1376
Howard Hinnant99968442011-11-29 18:15:50 +00001377template<class _Rp, class ..._ArgTypes>
1378template <class _Fp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001379typename enable_if
1380<
Howard Hinnant099dec12013-07-01 00:01:51 +00001381 function<_Rp(_ArgTypes...)>::template __callable<typename decay<_Fp>::type>::value &&
1382 !is_same<typename remove_reference<_Fp>::type, function<_Rp(_ArgTypes...)>>::value,
Howard Hinnant99968442011-11-29 18:15:50 +00001383 function<_Rp(_ArgTypes...)>&
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001384>::type
Howard Hinnant99968442011-11-29 18:15:50 +00001385function<_Rp(_ArgTypes...)>::operator=(_Fp&& __f)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001386{
Howard Hinnant99968442011-11-29 18:15:50 +00001387 function(_VSTD::forward<_Fp>(__f)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001388 return *this;
1389}
1390
Howard Hinnant99968442011-11-29 18:15:50 +00001391template<class _Rp, class ..._ArgTypes>
1392function<_Rp(_ArgTypes...)>::~function()
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001393{
1394 if (__f_ == (__base*)&__buf_)
1395 __f_->destroy();
1396 else if (__f_)
1397 __f_->destroy_deallocate();
1398}
1399
Howard Hinnant99968442011-11-29 18:15:50 +00001400template<class _Rp, class ..._ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001401void
Howard Hinnant99968442011-11-29 18:15:50 +00001402function<_Rp(_ArgTypes...)>::swap(function& __f) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001403{
1404 if (__f_ == (__base*)&__buf_ && __f.__f_ == (__base*)&__f.__buf_)
1405 {
1406 typename aligned_storage<sizeof(__buf_)>::type __tempbuf;
1407 __base* __t = (__base*)&__tempbuf;
1408 __f_->__clone(__t);
1409 __f_->destroy();
1410 __f_ = 0;
1411 __f.__f_->__clone((__base*)&__buf_);
1412 __f.__f_->destroy();
1413 __f.__f_ = 0;
1414 __f_ = (__base*)&__buf_;
1415 __t->__clone((__base*)&__f.__buf_);
1416 __t->destroy();
1417 __f.__f_ = (__base*)&__f.__buf_;
1418 }
1419 else if (__f_ == (__base*)&__buf_)
1420 {
1421 __f_->__clone((__base*)&__f.__buf_);
1422 __f_->destroy();
1423 __f_ = __f.__f_;
1424 __f.__f_ = (__base*)&__f.__buf_;
1425 }
1426 else if (__f.__f_ == (__base*)&__f.__buf_)
1427 {
1428 __f.__f_->__clone((__base*)&__buf_);
1429 __f.__f_->destroy();
1430 __f.__f_ = __f_;
1431 __f_ = (__base*)&__buf_;
1432 }
1433 else
Howard Hinnant0949eed2011-06-30 21:18:19 +00001434 _VSTD::swap(__f_, __f.__f_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001435}
1436
Howard Hinnant99968442011-11-29 18:15:50 +00001437template<class _Rp, class ..._ArgTypes>
1438_Rp
1439function<_Rp(_ArgTypes...)>::operator()(_ArgTypes... __arg) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001440{
Howard Hinnantd4444702010-08-11 17:04:31 +00001441#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001442 if (__f_ == 0)
1443 throw bad_function_call();
Howard Hinnant324bb032010-08-22 00:02:43 +00001444#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant0949eed2011-06-30 21:18:19 +00001445 return (*__f_)(_VSTD::forward<_ArgTypes>(__arg)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001446}
1447
Howard Hinnantd4444702010-08-11 17:04:31 +00001448#ifndef _LIBCPP_NO_RTTI
1449
Howard Hinnant99968442011-11-29 18:15:50 +00001450template<class _Rp, class ..._ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001451const std::type_info&
Howard Hinnant99968442011-11-29 18:15:50 +00001452function<_Rp(_ArgTypes...)>::target_type() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001453{
1454 if (__f_ == 0)
1455 return typeid(void);
1456 return __f_->target_type();
1457}
1458
Howard Hinnant99968442011-11-29 18:15:50 +00001459template<class _Rp, class ..._ArgTypes>
1460template <typename _Tp>
1461_Tp*
1462function<_Rp(_ArgTypes...)>::target() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001463{
1464 if (__f_ == 0)
Howard Hinnant99968442011-11-29 18:15:50 +00001465 return (_Tp*)0;
1466 return (_Tp*)__f_->target(typeid(_Tp));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001467}
1468
Howard Hinnant99968442011-11-29 18:15:50 +00001469template<class _Rp, class ..._ArgTypes>
1470template <typename _Tp>
1471const _Tp*
1472function<_Rp(_ArgTypes...)>::target() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001473{
1474 if (__f_ == 0)
Howard Hinnant99968442011-11-29 18:15:50 +00001475 return (const _Tp*)0;
1476 return (const _Tp*)__f_->target(typeid(_Tp));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001477}
1478
Howard Hinnant324bb032010-08-22 00:02:43 +00001479#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00001480
Howard Hinnant99968442011-11-29 18:15:50 +00001481template <class _Rp, class... _ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001482inline _LIBCPP_INLINE_VISIBILITY
1483bool
Howard Hinnant99968442011-11-29 18:15:50 +00001484operator==(const function<_Rp(_ArgTypes...)>& __f, nullptr_t) _NOEXCEPT {return !__f;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001485
Howard Hinnant99968442011-11-29 18:15:50 +00001486template <class _Rp, class... _ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001487inline _LIBCPP_INLINE_VISIBILITY
1488bool
Howard Hinnant99968442011-11-29 18:15:50 +00001489operator==(nullptr_t, const function<_Rp(_ArgTypes...)>& __f) _NOEXCEPT {return !__f;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001490
Howard Hinnant99968442011-11-29 18:15:50 +00001491template <class _Rp, class... _ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001492inline _LIBCPP_INLINE_VISIBILITY
1493bool
Howard Hinnant99968442011-11-29 18:15:50 +00001494operator!=(const function<_Rp(_ArgTypes...)>& __f, nullptr_t) _NOEXCEPT {return (bool)__f;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001495
Howard Hinnant99968442011-11-29 18:15:50 +00001496template <class _Rp, class... _ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001497inline _LIBCPP_INLINE_VISIBILITY
1498bool
Howard Hinnant99968442011-11-29 18:15:50 +00001499operator!=(nullptr_t, const function<_Rp(_ArgTypes...)>& __f) _NOEXCEPT {return (bool)__f;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001500
Howard Hinnant99968442011-11-29 18:15:50 +00001501template <class _Rp, class... _ArgTypes>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001502inline _LIBCPP_INLINE_VISIBILITY
1503void
Howard Hinnant99968442011-11-29 18:15:50 +00001504swap(function<_Rp(_ArgTypes...)>& __x, function<_Rp(_ArgTypes...)>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001505{return __x.swap(__y);}
1506
1507template<class _Tp> struct __is_bind_expression : public false_type {};
Howard Hinnant83eade62013-03-06 23:30:19 +00001508template<class _Tp> struct _LIBCPP_TYPE_VIS is_bind_expression
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001509 : public __is_bind_expression<typename remove_cv<_Tp>::type> {};
1510
1511template<class _Tp> struct __is_placeholder : public integral_constant<int, 0> {};
Howard Hinnant83eade62013-03-06 23:30:19 +00001512template<class _Tp> struct _LIBCPP_TYPE_VIS is_placeholder
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001513 : public __is_placeholder<typename remove_cv<_Tp>::type> {};
1514
1515namespace placeholders
1516{
1517
Howard Hinnant99968442011-11-29 18:15:50 +00001518template <int _Np> struct __ph {};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001519
1520extern __ph<1> _1;
1521extern __ph<2> _2;
1522extern __ph<3> _3;
1523extern __ph<4> _4;
1524extern __ph<5> _5;
1525extern __ph<6> _6;
1526extern __ph<7> _7;
1527extern __ph<8> _8;
1528extern __ph<9> _9;
1529extern __ph<10> _10;
1530
1531} // placeholders
1532
Howard Hinnant99968442011-11-29 18:15:50 +00001533template<int _Np>
1534struct __is_placeholder<placeholders::__ph<_Np> >
1535 : public integral_constant<int, _Np> {};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001536
1537template <class _Tp, class _Uj>
1538inline _LIBCPP_INLINE_VISIBILITY
1539_Tp&
1540__mu(reference_wrapper<_Tp> __t, _Uj&)
1541{
1542 return __t.get();
1543}
1544
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001545template <class _Ti, class ..._Uj, size_t ..._Indx>
1546inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0148a832011-05-19 19:41:47 +00001547typename __invoke_of<_Ti&, _Uj...>::type
1548__mu_expand(_Ti& __ti, tuple<_Uj...>& __uj, __tuple_indices<_Indx...>)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001549{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001550 return __ti(_VSTD::forward<_Uj>(get<_Indx>(__uj))...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001551}
1552
1553template <class _Ti, class ..._Uj>
1554inline _LIBCPP_INLINE_VISIBILITY
1555typename enable_if
1556<
1557 is_bind_expression<_Ti>::value,
Howard Hinnant0148a832011-05-19 19:41:47 +00001558 typename __invoke_of<_Ti&, _Uj...>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001559>::type
1560__mu(_Ti& __ti, tuple<_Uj...>& __uj)
1561{
1562 typedef typename __make_tuple_indices<sizeof...(_Uj)>::type __indices;
1563 return __mu_expand(__ti, __uj, __indices());
1564}
1565
1566template <bool IsPh, class _Ti, class _Uj>
1567struct __mu_return2 {};
1568
1569template <class _Ti, class _Uj>
1570struct __mu_return2<true, _Ti, _Uj>
1571{
1572 typedef typename tuple_element<is_placeholder<_Ti>::value - 1, _Uj>::type type;
1573};
1574
1575template <class _Ti, class _Uj>
1576inline _LIBCPP_INLINE_VISIBILITY
1577typename enable_if
1578<
1579 0 < is_placeholder<_Ti>::value,
1580 typename __mu_return2<0 < is_placeholder<_Ti>::value, _Ti, _Uj>::type
1581>::type
1582__mu(_Ti&, _Uj& __uj)
1583{
1584 const size_t _Indx = is_placeholder<_Ti>::value - 1;
Howard Hinnant0949eed2011-06-30 21:18:19 +00001585 return _VSTD::forward<typename tuple_element<_Indx, _Uj>::type>(get<_Indx>(__uj));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001586}
1587
1588template <class _Ti, class _Uj>
1589inline _LIBCPP_INLINE_VISIBILITY
1590typename enable_if
1591<
1592 !is_bind_expression<_Ti>::value &&
1593 is_placeholder<_Ti>::value == 0 &&
1594 !__is_reference_wrapper<_Ti>::value,
1595 _Ti&
1596>::type
Howard Hinnantec3773c2011-12-01 20:21:04 +00001597__mu(_Ti& __ti, _Uj&)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001598{
1599 return __ti;
1600}
1601
Howard Hinnantef542512011-05-22 15:07:43 +00001602template <class _Ti, bool IsReferenceWrapper, bool IsBindEx, bool IsPh,
1603 class _TupleUj>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001604struct ____mu_return;
1605
Howard Hinnantc05e9862013-06-30 19:48:15 +00001606template <bool _Invokable, class _Ti, class ..._Uj>
1607struct ____mu_return_invokable // false
1608{
1609 typedef __nat type;
1610};
1611
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001612template <class _Ti, class ..._Uj>
Howard Hinnantc05e9862013-06-30 19:48:15 +00001613struct ____mu_return_invokable<true, _Ti, _Uj...>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001614{
Howard Hinnant0148a832011-05-19 19:41:47 +00001615 typedef typename __invoke_of<_Ti&, _Uj...>::type type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001616};
1617
Howard Hinnantc05e9862013-06-30 19:48:15 +00001618template <class _Ti, class ..._Uj>
1619struct ____mu_return<_Ti, false, true, false, tuple<_Uj...> >
1620 : public ____mu_return_invokable<__invokable<_Ti&, _Uj...>::value, _Ti, _Uj...>
1621{
1622};
1623
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001624template <class _Ti, class _TupleUj>
Howard Hinnantef542512011-05-22 15:07:43 +00001625struct ____mu_return<_Ti, false, false, true, _TupleUj>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001626{
1627 typedef typename tuple_element<is_placeholder<_Ti>::value - 1,
1628 _TupleUj>::type&& type;
1629};
1630
1631template <class _Ti, class _TupleUj>
Howard Hinnantef542512011-05-22 15:07:43 +00001632struct ____mu_return<_Ti, true, false, false, _TupleUj>
1633{
1634 typedef typename _Ti::type& type;
1635};
1636
1637template <class _Ti, class _TupleUj>
1638struct ____mu_return<_Ti, false, false, false, _TupleUj>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001639{
1640 typedef _Ti& type;
1641};
1642
1643template <class _Ti, class _TupleUj>
1644struct __mu_return
1645 : public ____mu_return<_Ti,
Howard Hinnantef542512011-05-22 15:07:43 +00001646 __is_reference_wrapper<_Ti>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001647 is_bind_expression<_Ti>::value,
Howard Hinnant0560f782013-02-21 18:16:55 +00001648 0 < is_placeholder<_Ti>::value &&
1649 is_placeholder<_Ti>::value <= tuple_size<_TupleUj>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001650 _TupleUj>
1651{
1652};
1653
Howard Hinnant99968442011-11-29 18:15:50 +00001654template <class _Fp, class _BoundArgs, class _TupleUj>
Howard Hinnant0560f782013-02-21 18:16:55 +00001655struct _is_valid_bind_return
1656{
1657 static const bool value = false;
1658};
1659
1660template <class _Fp, class ..._BoundArgs, class _TupleUj>
1661struct _is_valid_bind_return<_Fp, tuple<_BoundArgs...>, _TupleUj>
1662{
1663 static const bool value = __invokable<_Fp,
1664 typename __mu_return<_BoundArgs, _TupleUj>::type...>::value;
1665};
1666
1667template <class _Fp, class ..._BoundArgs, class _TupleUj>
1668struct _is_valid_bind_return<_Fp, const tuple<_BoundArgs...>, _TupleUj>
1669{
1670 static const bool value = __invokable<_Fp,
1671 typename __mu_return<const _BoundArgs, _TupleUj>::type...>::value;
1672};
1673
1674template <class _Fp, class _BoundArgs, class _TupleUj,
1675 bool = _is_valid_bind_return<_Fp, _BoundArgs, _TupleUj>::value>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001676struct __bind_return;
1677
Howard Hinnant99968442011-11-29 18:15:50 +00001678template <class _Fp, class ..._BoundArgs, class _TupleUj>
Howard Hinnant0560f782013-02-21 18:16:55 +00001679struct __bind_return<_Fp, tuple<_BoundArgs...>, _TupleUj, true>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001680{
Howard Hinnant0148a832011-05-19 19:41:47 +00001681 typedef typename __invoke_of
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001682 <
Howard Hinnant99968442011-11-29 18:15:50 +00001683 _Fp&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001684 typename __mu_return
1685 <
1686 _BoundArgs,
1687 _TupleUj
1688 >::type...
1689 >::type type;
1690};
1691
Howard Hinnant99968442011-11-29 18:15:50 +00001692template <class _Fp, class ..._BoundArgs, class _TupleUj>
Howard Hinnant0560f782013-02-21 18:16:55 +00001693struct __bind_return<_Fp, const tuple<_BoundArgs...>, _TupleUj, true>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001694{
Howard Hinnant0148a832011-05-19 19:41:47 +00001695 typedef typename __invoke_of
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001696 <
Howard Hinnant99968442011-11-29 18:15:50 +00001697 _Fp&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001698 typename __mu_return
1699 <
1700 const _BoundArgs,
1701 _TupleUj
1702 >::type...
1703 >::type type;
1704};
1705
Howard Hinnant99968442011-11-29 18:15:50 +00001706template <class _Fp, class _BoundArgs, size_t ..._Indx, class _Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001707inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001708typename __bind_return<_Fp, _BoundArgs, _Args>::type
1709__apply_functor(_Fp& __f, _BoundArgs& __bound_args, __tuple_indices<_Indx...>,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001710 _Args&& __args)
1711{
1712 return __invoke(__f, __mu(get<_Indx>(__bound_args), __args)...);
1713}
1714
Howard Hinnant99968442011-11-29 18:15:50 +00001715template<class _Fp, class ..._BoundArgs>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001716class __bind
Howard Hinnant99968442011-11-29 18:15:50 +00001717 : public __weak_result_type<typename decay<_Fp>::type>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001718{
Howard Hinnant0560f782013-02-21 18:16:55 +00001719protected:
Howard Hinnant99968442011-11-29 18:15:50 +00001720 typedef typename decay<_Fp>::type _Fd;
Howard Hinnant0148a832011-05-19 19:41:47 +00001721 typedef tuple<typename decay<_BoundArgs>::type...> _Td;
Howard Hinnant0560f782013-02-21 18:16:55 +00001722private:
Howard Hinnant0148a832011-05-19 19:41:47 +00001723 _Fd __f_;
1724 _Td __bound_args_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001725
1726 typedef typename __make_tuple_indices<sizeof...(_BoundArgs)>::type __indices;
1727public:
Howard Hinnant90d77852011-07-02 18:22:36 +00001728#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1729
1730 _LIBCPP_INLINE_VISIBILITY
1731 __bind(const __bind& __b)
1732 : __f_(__b.__f_),
1733 __bound_args_(__b.__bound_args_) {}
1734
1735 _LIBCPP_INLINE_VISIBILITY
1736 __bind& operator=(const __bind& __b)
1737 {
1738 __f_ = __b.__f_;
1739 __bound_args_ = __b.__bound_args_;
1740 return *this;
1741 }
1742
Howard Hinnant42a63a72010-09-21 22:55:27 +00001743 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001744 __bind(__bind&& __b)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001745 : __f_(_VSTD::move(__b.__f_)),
1746 __bound_args_(_VSTD::move(__b.__bound_args_)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001747
Howard Hinnant90d77852011-07-02 18:22:36 +00001748 _LIBCPP_INLINE_VISIBILITY
1749 __bind& operator=(__bind&& __b)
1750 {
1751 __f_ = _VSTD::move(__b.__f_);
1752 __bound_args_ = _VSTD::move(__b.__bound_args_);
1753 return *this;
1754 }
1755
1756#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1757
Howard Hinnantd2da6d22012-05-04 17:21:02 +00001758 template <class _Gp, class ..._BA,
1759 class = typename enable_if
1760 <
Howard Hinnant099dec12013-07-01 00:01:51 +00001761 is_constructible<_Fd, _Gp>::value &&
1762 !is_same<typename remove_reference<_Gp>::type,
1763 __bind>::value
Howard Hinnantd2da6d22012-05-04 17:21:02 +00001764 >::type>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001765 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001766 explicit __bind(_Gp&& __f, _BA&& ...__bound_args)
1767 : __f_(_VSTD::forward<_Gp>(__f)),
Howard Hinnant0949eed2011-06-30 21:18:19 +00001768 __bound_args_(_VSTD::forward<_BA>(__bound_args)...) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001769
1770 template <class ..._Args>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001771 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0148a832011-05-19 19:41:47 +00001772 typename __bind_return<_Fd, _Td, tuple<_Args&&...> >::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001773 operator()(_Args&& ...__args)
1774 {
Howard Hinnant324bb032010-08-22 00:02:43 +00001775 return __apply_functor(__f_, __bound_args_, __indices(),
Howard Hinnant0949eed2011-06-30 21:18:19 +00001776 tuple<_Args&&...>(_VSTD::forward<_Args>(__args)...));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001777 }
1778
1779 template <class ..._Args>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001780 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0560f782013-02-21 18:16:55 +00001781 typename __bind_return<const _Fd, const _Td, tuple<_Args&&...> >::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001782 operator()(_Args&& ...__args) const
1783 {
Howard Hinnant324bb032010-08-22 00:02:43 +00001784 return __apply_functor(__f_, __bound_args_, __indices(),
Howard Hinnant0949eed2011-06-30 21:18:19 +00001785 tuple<_Args&&...>(_VSTD::forward<_Args>(__args)...));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001786 }
1787};
1788
Howard Hinnant99968442011-11-29 18:15:50 +00001789template<class _Fp, class ..._BoundArgs>
1790struct __is_bind_expression<__bind<_Fp, _BoundArgs...> > : public true_type {};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001791
Howard Hinnant99968442011-11-29 18:15:50 +00001792template<class _Rp, class _Fp, class ..._BoundArgs>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001793class __bind_r
Howard Hinnant99968442011-11-29 18:15:50 +00001794 : public __bind<_Fp, _BoundArgs...>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001795{
Howard Hinnant99968442011-11-29 18:15:50 +00001796 typedef __bind<_Fp, _BoundArgs...> base;
Howard Hinnant0560f782013-02-21 18:16:55 +00001797 typedef typename base::_Fd _Fd;
1798 typedef typename base::_Td _Td;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001799public:
Howard Hinnant99968442011-11-29 18:15:50 +00001800 typedef _Rp result_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001801
Howard Hinnant90d77852011-07-02 18:22:36 +00001802#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1803
1804 _LIBCPP_INLINE_VISIBILITY
1805 __bind_r(const __bind_r& __b)
1806 : base(_VSTD::forward<const base&>(__b)) {}
1807
1808 _LIBCPP_INLINE_VISIBILITY
1809 __bind_r& operator=(const __bind_r& __b)
1810 {
1811 base::operator=(_VSTD::forward<const base&>(__b));
1812 return *this;
1813 }
1814
Howard Hinnant496934a2011-05-16 16:19:01 +00001815 _LIBCPP_INLINE_VISIBILITY
1816 __bind_r(__bind_r&& __b)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001817 : base(_VSTD::forward<base>(__b)) {}
Howard Hinnant496934a2011-05-16 16:19:01 +00001818
Howard Hinnant90d77852011-07-02 18:22:36 +00001819 _LIBCPP_INLINE_VISIBILITY
1820 __bind_r& operator=(__bind_r&& __b)
1821 {
1822 base::operator=(_VSTD::forward<base>(__b));
1823 return *this;
1824 }
1825
1826#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1827
Howard Hinnant099dec12013-07-01 00:01:51 +00001828 template <class _Gp, class ..._BA,
1829 class = typename enable_if
1830 <
1831 is_constructible<_Fd, _Gp>::value &&
1832 !is_same<typename remove_reference<_Gp>::type,
1833 __bind_r>::value
1834 >::type>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001835 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001836 explicit __bind_r(_Gp&& __f, _BA&& ...__bound_args)
1837 : base(_VSTD::forward<_Gp>(__f),
Howard Hinnant0949eed2011-06-30 21:18:19 +00001838 _VSTD::forward<_BA>(__bound_args)...) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001839
1840 template <class ..._Args>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001841 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0560f782013-02-21 18:16:55 +00001842 typename enable_if
1843 <
1844 is_convertible<typename __bind_return<_Fd, _Td, tuple<_Args&&...> >::type,
1845 result_type>::value,
1846 result_type
1847 >::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001848 operator()(_Args&& ...__args)
1849 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001850 return base::operator()(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001851 }
1852
1853 template <class ..._Args>
Howard Hinnant42a63a72010-09-21 22:55:27 +00001854 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0560f782013-02-21 18:16:55 +00001855 typename enable_if
1856 <
1857 is_convertible<typename __bind_return<const _Fd, const _Td, tuple<_Args&&...> >::type,
1858 result_type>::value,
1859 result_type
1860 >::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001861 operator()(_Args&& ...__args) const
1862 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001863 return base::operator()(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001864 }
1865};
1866
Howard Hinnant99968442011-11-29 18:15:50 +00001867template<class _Rp, class _Fp, class ..._BoundArgs>
1868struct __is_bind_expression<__bind_r<_Rp, _Fp, _BoundArgs...> > : public true_type {};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001869
Howard Hinnant99968442011-11-29 18:15:50 +00001870template<class _Fp, class ..._BoundArgs>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001871inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001872__bind<_Fp, _BoundArgs...>
1873bind(_Fp&& __f, _BoundArgs&&... __bound_args)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001874{
Howard Hinnant99968442011-11-29 18:15:50 +00001875 typedef __bind<_Fp, _BoundArgs...> type;
1876 return type(_VSTD::forward<_Fp>(__f), _VSTD::forward<_BoundArgs>(__bound_args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001877}
1878
Howard Hinnant99968442011-11-29 18:15:50 +00001879template<class _Rp, class _Fp, class ..._BoundArgs>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001880inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001881__bind_r<_Rp, _Fp, _BoundArgs...>
1882bind(_Fp&& __f, _BoundArgs&&... __bound_args)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001883{
Howard Hinnant99968442011-11-29 18:15:50 +00001884 typedef __bind_r<_Rp, _Fp, _BoundArgs...> type;
1885 return type(_VSTD::forward<_Fp>(__f), _VSTD::forward<_BoundArgs>(__bound_args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001886}
1887
1888#endif // _LIBCPP_HAS_NO_VARIADICS
1889
1890template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001891struct _LIBCPP_TYPE_VIS hash<bool>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001892 : public unary_function<bool, size_t>
1893{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001894 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001895 size_t operator()(bool __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001896};
1897
1898template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001899struct _LIBCPP_TYPE_VIS hash<char>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001900 : public unary_function<char, size_t>
1901{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001902 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001903 size_t operator()(char __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001904};
1905
1906template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001907struct _LIBCPP_TYPE_VIS hash<signed char>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001908 : public unary_function<signed char, size_t>
1909{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001910 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001911 size_t operator()(signed char __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001912};
1913
1914template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001915struct _LIBCPP_TYPE_VIS hash<unsigned char>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001916 : public unary_function<unsigned char, size_t>
1917{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001918 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001919 size_t operator()(unsigned char __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001920};
1921
1922#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
1923
1924template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001925struct _LIBCPP_TYPE_VIS hash<char16_t>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001926 : public unary_function<char16_t, size_t>
1927{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001928 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001929 size_t operator()(char16_t __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001930};
1931
1932template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001933struct _LIBCPP_TYPE_VIS hash<char32_t>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001934 : public unary_function<char32_t, size_t>
1935{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001936 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001937 size_t operator()(char32_t __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001938};
1939
Howard Hinnant324bb032010-08-22 00:02:43 +00001940#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001941
1942template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001943struct _LIBCPP_TYPE_VIS hash<wchar_t>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001944 : public unary_function<wchar_t, size_t>
1945{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001946 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001947 size_t operator()(wchar_t __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001948};
1949
1950template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001951struct _LIBCPP_TYPE_VIS hash<short>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001952 : public unary_function<short, size_t>
1953{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001954 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001955 size_t operator()(short __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001956};
1957
1958template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001959struct _LIBCPP_TYPE_VIS hash<unsigned short>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001960 : public unary_function<unsigned short, size_t>
1961{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001962 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001963 size_t operator()(unsigned short __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001964};
1965
1966template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001967struct _LIBCPP_TYPE_VIS hash<int>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001968 : public unary_function<int, size_t>
1969{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001970 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001971 size_t operator()(int __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001972};
1973
1974template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001975struct _LIBCPP_TYPE_VIS hash<unsigned int>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001976 : public unary_function<unsigned int, size_t>
1977{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001978 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001979 size_t operator()(unsigned int __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001980};
1981
1982template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001983struct _LIBCPP_TYPE_VIS hash<long>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001984 : public unary_function<long, size_t>
1985{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001986 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001987 size_t operator()(long __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001988};
1989
1990template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001991struct _LIBCPP_TYPE_VIS hash<unsigned long>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001992 : public unary_function<unsigned long, size_t>
1993{
Howard Hinnant42a63a72010-09-21 22:55:27 +00001994 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00001995 size_t operator()(unsigned long __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001996};
1997
1998template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00001999struct _LIBCPP_TYPE_VIS hash<long long>
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002000 : public __scalar_hash<long long>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002001{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002002};
2003
2004template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00002005struct _LIBCPP_TYPE_VIS hash<unsigned long long>
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002006 : public __scalar_hash<unsigned long long>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002007{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002008};
2009
2010template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00002011struct _LIBCPP_TYPE_VIS hash<float>
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002012 : public __scalar_hash<float>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002013{
Howard Hinnant42a63a72010-09-21 22:55:27 +00002014 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00002015 size_t operator()(float __v) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002016 {
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002017 // -0.0 and 0.0 should return same hash
Howard Hinnant28916752011-12-02 23:45:22 +00002018 if (__v == 0)
2019 return 0;
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002020 return __scalar_hash<float>::operator()(__v);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002021 }
2022};
2023
2024template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00002025struct _LIBCPP_TYPE_VIS hash<double>
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002026 : public __scalar_hash<double>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002027{
Howard Hinnant42a63a72010-09-21 22:55:27 +00002028 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00002029 size_t operator()(double __v) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002030 {
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002031 // -0.0 and 0.0 should return same hash
2032 if (__v == 0)
2033 return 0;
2034 return __scalar_hash<double>::operator()(__v);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002035 }
2036};
2037
2038template <>
Howard Hinnant83eade62013-03-06 23:30:19 +00002039struct _LIBCPP_TYPE_VIS hash<long double>
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002040 : public __scalar_hash<long double>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002041{
Howard Hinnant42a63a72010-09-21 22:55:27 +00002042 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant603d2c02011-05-28 17:59:48 +00002043 size_t operator()(long double __v) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002044 {
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002045 // -0.0 and 0.0 should return same hash
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002046 if (__v == 0)
2047 return 0;
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002048#if defined(__i386__)
2049 // Zero out padding bits
2050 union
Howard Hinnant28916752011-12-02 23:45:22 +00002051 {
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002052 long double __t;
2053 struct
Howard Hinnant28916752011-12-02 23:45:22 +00002054 {
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002055 size_t __a;
2056 size_t __b;
2057 size_t __c;
Howard Hinnant28916752011-12-02 23:45:22 +00002058 size_t __d;
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002059 };
Howard Hinnant28916752011-12-02 23:45:22 +00002060 } __u;
Howard Hinnantcf2654b2011-12-03 21:11:36 +00002061 __u.__a = 0;
2062 __u.__b = 0;
2063 __u.__c = 0;
2064 __u.__d = 0;
2065 __u.__t = __v;
2066 return __u.__a ^ __u.__b ^ __u.__c ^ __u.__d;
2067#elif defined(__x86_64__)
2068 // Zero out padding bits
2069 union
2070 {
2071 long double __t;
2072 struct
2073 {
2074 size_t __a;
2075 size_t __b;
2076 };
2077 } __u;
2078 __u.__a = 0;
2079 __u.__b = 0;
2080 __u.__t = __v;
2081 return __u.__a ^ __u.__b;
2082#else
2083 return __scalar_hash<long double>::operator()(__v);
2084#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002085 }
2086};
2087
Howard Hinnant21aefc32010-06-03 16:42:57 +00002088// struct hash<T*> in <memory>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002089
2090_LIBCPP_END_NAMESPACE_STD
2091
2092#endif // _LIBCPP_FUNCTIONAL