Merged with mainline at revision 128810.
[official-gcc.git] / libstdc++-v3 / include / bits / stl_function.h
blobece42a3e2ebc5e749aece13d7821bca378401599
1 // Functor implementations -*- C++ -*-
3 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
33 * Copyright (c) 1994
34 * Hewlett-Packard Company
36 * Permission to use, copy, modify, distribute and sell this software
37 * and its documentation for any purpose is hereby granted without fee,
38 * provided that the above copyright notice appear in all copies and
39 * that both that copyright notice and this permission notice appear
40 * in supporting documentation. Hewlett-Packard Company makes no
41 * representations about the suitability of this software for any
42 * purpose. It is provided "as is" without express or implied warranty.
45 * Copyright (c) 1996-1998
46 * Silicon Graphics Computer Systems, Inc.
48 * Permission to use, copy, modify, distribute and sell this software
49 * and its documentation for any purpose is hereby granted without fee,
50 * provided that the above copyright notice appear in all copies and
51 * that both that copyright notice and this permission notice appear
52 * in supporting documentation. Silicon Graphics makes no
53 * representations about the suitability of this software for any
54 * purpose. It is provided "as is" without express or implied warranty.
57 /** @file stl_function.h
58 * This is an internal header file, included by other library headers.
59 * You should not attempt to use it directly.
62 #ifndef _STL_FUNCTION_H
63 #define _STL_FUNCTION_H 1
65 _GLIBCXX_BEGIN_NAMESPACE(std)
67 // 20.3.1 base classes
68 /** @defgroup s20_3_1_base Functor Base Classes
69 * Function objects, or @e functors, are objects with an @c operator()
70 * defined and accessible. They can be passed as arguments to algorithm
71 * templates and used in place of a function pointer. Not only is the
72 * resulting expressiveness of the library increased, but the generated
73 * code can be more efficient than what you might write by hand. When we
74 * refer to "functors," then, generally we include function pointers in
75 * the description as well.
77 * Often, functors are only created as temporaries passed to algorithm
78 * calls, rather than being created as named variables.
80 * Two examples taken from the standard itself follow. To perform a
81 * by-element addition of two vectors @c a and @c b containing @c double,
82 * and put the result in @c a, use
83 * \code
84 * transform (a.begin(), a.end(), b.begin(), a.begin(), plus<double>());
85 * \endcode
86 * To negate every element in @c a, use
87 * \code
88 * transform(a.begin(), a.end(), a.begin(), negate<double>());
89 * \endcode
90 * The addition and negation functions will be inlined directly.
92 * The standard functors are derived from structs named @c unary_function
93 * and @c binary_function. These two classes contain nothing but typedefs,
94 * to aid in generic (template) programming. If you write your own
95 * functors, you might consider doing the same.
97 * @{
99 /**
100 * This is one of the @link s20_3_1_base functor base classes@endlink.
102 template<typename _Arg, typename _Result>
103 struct unary_function
105 typedef _Arg argument_type; ///< @c argument_type is the type of the
106 /// argument (no surprises here)
108 typedef _Result result_type; ///< @c result_type is the return type
112 * This is one of the @link s20_3_1_base functor base classes@endlink.
114 template<typename _Arg1, typename _Arg2, typename _Result>
115 struct binary_function
117 typedef _Arg1 first_argument_type; ///< the type of the first argument
118 /// (no surprises here)
120 typedef _Arg2 second_argument_type; ///< the type of the second argument
121 typedef _Result result_type; ///< type of the return type
123 /** @} */
125 // 20.3.2 arithmetic
126 /** @defgroup s20_3_2_arithmetic Arithmetic Classes
128 * Because basic math often needs to be done during an algorithm,
129 * the library provides functors for those operations. See the
130 * documentation for @link s20_3_1_base the base classes@endlink
131 * for examples of their use.
133 * @{
135 /// One of the @link s20_3_2_arithmetic math functors@endlink.
136 template<typename _Tp>
137 struct plus : public binary_function<_Tp, _Tp, _Tp>
140 operator()(const _Tp& __x, const _Tp& __y) const
141 { return __x + __y; }
144 /// One of the @link s20_3_2_arithmetic math functors@endlink.
145 template<typename _Tp>
146 struct minus : public binary_function<_Tp, _Tp, _Tp>
149 operator()(const _Tp& __x, const _Tp& __y) const
150 { return __x - __y; }
153 /// One of the @link s20_3_2_arithmetic math functors@endlink.
154 template<typename _Tp>
155 struct multiplies : public binary_function<_Tp, _Tp, _Tp>
158 operator()(const _Tp& __x, const _Tp& __y) const
159 { return __x * __y; }
162 /// One of the @link s20_3_2_arithmetic math functors@endlink.
163 template<typename _Tp>
164 struct divides : public binary_function<_Tp, _Tp, _Tp>
167 operator()(const _Tp& __x, const _Tp& __y) const
168 { return __x / __y; }
171 /// One of the @link s20_3_2_arithmetic math functors@endlink.
172 template<typename _Tp>
173 struct modulus : public binary_function<_Tp, _Tp, _Tp>
176 operator()(const _Tp& __x, const _Tp& __y) const
177 { return __x % __y; }
180 /// One of the @link s20_3_2_arithmetic math functors@endlink.
181 template<typename _Tp>
182 struct negate : public unary_function<_Tp, _Tp>
185 operator()(const _Tp& __x) const
186 { return -__x; }
188 /** @} */
190 // 20.3.3 comparisons
191 /** @defgroup s20_3_3_comparisons Comparison Classes
192 * The library provides six wrapper functors for all the basic comparisons
193 * in C++, like @c <.
195 * @{
197 /// One of the @link s20_3_3_comparisons comparison functors@endlink.
198 template<typename _Tp>
199 struct equal_to : public binary_function<_Tp, _Tp, bool>
201 bool
202 operator()(const _Tp& __x, const _Tp& __y) const
203 { return __x == __y; }
206 /// One of the @link s20_3_3_comparisons comparison functors@endlink.
207 template<typename _Tp>
208 struct not_equal_to : public binary_function<_Tp, _Tp, bool>
210 bool
211 operator()(const _Tp& __x, const _Tp& __y) const
212 { return __x != __y; }
215 /// One of the @link s20_3_3_comparisons comparison functors@endlink.
216 template<typename _Tp>
217 struct greater : public binary_function<_Tp, _Tp, bool>
219 bool
220 operator()(const _Tp& __x, const _Tp& __y) const
221 { return __x > __y; }
224 /// One of the @link s20_3_3_comparisons comparison functors@endlink.
225 template<typename _Tp>
226 struct less : public binary_function<_Tp, _Tp, bool>
228 bool
229 operator()(const _Tp& __x, const _Tp& __y) const
230 { return __x < __y; }
233 /// One of the @link s20_3_3_comparisons comparison functors@endlink.
234 template<typename _Tp>
235 struct greater_equal : public binary_function<_Tp, _Tp, bool>
237 bool
238 operator()(const _Tp& __x, const _Tp& __y) const
239 { return __x >= __y; }
242 /// One of the @link s20_3_3_comparisons comparison functors@endlink.
243 template<typename _Tp>
244 struct less_equal : public binary_function<_Tp, _Tp, bool>
246 bool
247 operator()(const _Tp& __x, const _Tp& __y) const
248 { return __x <= __y; }
250 /** @} */
252 // 20.3.4 logical operations
253 /** @defgroup s20_3_4_logical Boolean Operations Classes
254 * Here are wrapper functors for Boolean operations: @c &&, @c ||,
255 * and @c !.
257 * @{
259 /// One of the @link s20_3_4_logical Boolean operations functors@endlink.
260 template<typename _Tp>
261 struct logical_and : public binary_function<_Tp, _Tp, bool>
263 bool
264 operator()(const _Tp& __x, const _Tp& __y) const
265 { return __x && __y; }
268 /// One of the @link s20_3_4_logical Boolean operations functors@endlink.
269 template<typename _Tp>
270 struct logical_or : public binary_function<_Tp, _Tp, bool>
272 bool
273 operator()(const _Tp& __x, const _Tp& __y) const
274 { return __x || __y; }
277 /// One of the @link s20_3_4_logical Boolean operations functors@endlink.
278 template<typename _Tp>
279 struct logical_not : public unary_function<_Tp, bool>
281 bool
282 operator()(const _Tp& __x) const
283 { return !__x; }
285 /** @} */
287 // _GLIBCXX_RESOLVE_LIB_DEFECTS
288 // DR 660. Missing Bitwise Operations.
289 template<typename _Tp>
290 struct bit_and : public binary_function<_Tp, _Tp, _Tp>
293 operator()(const _Tp& __x, const _Tp& __y) const
294 { return __x & __y; }
297 template<typename _Tp>
298 struct bit_or : public binary_function<_Tp, _Tp, _Tp>
301 operator()(const _Tp& __x, const _Tp& __y) const
302 { return __x | __y; }
305 template<typename _Tp>
306 struct bit_xor : public binary_function<_Tp, _Tp, _Tp>
309 operator()(const _Tp& __x, const _Tp& __y) const
310 { return __x ^ __y; }
313 // 20.3.5 negators
314 /** @defgroup s20_3_5_negators Negators
315 * The functions @c not1 and @c not2 each take a predicate functor
316 * and return an instance of @c unary_negate or
317 * @c binary_negate, respectively. These classes are functors whose
318 * @c operator() performs the stored predicate function and then returns
319 * the negation of the result.
321 * For example, given a vector of integers and a trivial predicate,
322 * \code
323 * struct IntGreaterThanThree
324 * : public std::unary_function<int, bool>
326 * bool operator() (int x) { return x > 3; }
327 * };
329 * std::find_if (v.begin(), v.end(), not1(IntGreaterThanThree()));
330 * \endcode
331 * The call to @c find_if will locate the first index (i) of @c v for which
332 * "!(v[i] > 3)" is true.
334 * The not1/unary_negate combination works on predicates taking a single
335 * argument. The not2/binary_negate combination works on predicates which
336 * take two arguments.
338 * @{
340 /// One of the @link s20_3_5_negators negation functors@endlink.
341 template<typename _Predicate>
342 class unary_negate
343 : public unary_function<typename _Predicate::argument_type, bool>
345 protected:
346 _Predicate _M_pred;
348 public:
349 explicit
350 unary_negate(const _Predicate& __x) : _M_pred(__x) { }
352 bool
353 operator()(const typename _Predicate::argument_type& __x) const
354 { return !_M_pred(__x); }
357 /// One of the @link s20_3_5_negators negation functors@endlink.
358 template<typename _Predicate>
359 inline unary_negate<_Predicate>
360 not1(const _Predicate& __pred)
361 { return unary_negate<_Predicate>(__pred); }
363 /// One of the @link s20_3_5_negators negation functors@endlink.
364 template<typename _Predicate>
365 class binary_negate
366 : public binary_function<typename _Predicate::first_argument_type,
367 typename _Predicate::second_argument_type, bool>
369 protected:
370 _Predicate _M_pred;
372 public:
373 explicit
374 binary_negate(const _Predicate& __x) : _M_pred(__x) { }
376 bool
377 operator()(const typename _Predicate::first_argument_type& __x,
378 const typename _Predicate::second_argument_type& __y) const
379 { return !_M_pred(__x, __y); }
382 /// One of the @link s20_3_5_negators negation functors@endlink.
383 template<typename _Predicate>
384 inline binary_negate<_Predicate>
385 not2(const _Predicate& __pred)
386 { return binary_negate<_Predicate>(__pred); }
387 /** @} */
389 // 20.3.6 binders
390 /** @defgroup s20_3_6_binder Binder Classes
391 * Binders turn functions/functors with two arguments into functors with
392 * a single argument, storing an argument to be applied later. For
393 * example, a variable @c B of type @c binder1st is constructed from a
394 * functor @c f and an argument @c x. Later, B's @c operator() is called
395 * with a single argument @c y. The return value is the value of @c f(x,y).
396 * @c B can be "called" with various arguments (y1, y2, ...) and will in
397 * turn call @c f(x,y1), @c f(x,y2), ...
399 * The function @c bind1st is provided to save some typing. It takes the
400 * function and an argument as parameters, and returns an instance of
401 * @c binder1st.
403 * The type @c binder2nd and its creator function @c bind2nd do the same
404 * thing, but the stored argument is passed as the second parameter instead
405 * of the first, e.g., @c bind2nd(std::minus<float>,1.3) will create a
406 * functor whose @c operator() accepts a floating-point number, subtracts
407 * 1.3 from it, and returns the result. (If @c bind1st had been used,
408 * the functor would perform "1.3 - x" instead.
410 * Creator-wrapper functions like @c bind1st are intended to be used in
411 * calling algorithms. Their return values will be temporary objects.
412 * (The goal is to not require you to type names like
413 * @c std::binder1st<std::plus<int>> for declaring a variable to hold the
414 * return value from @c bind1st(std::plus<int>,5).
416 * These become more useful when combined with the composition functions.
418 * @{
420 /// One of the @link s20_3_6_binder binder functors@endlink.
421 template<typename _Operation>
422 class binder1st
423 : public unary_function<typename _Operation::second_argument_type,
424 typename _Operation::result_type>
426 protected:
427 _Operation op;
428 typename _Operation::first_argument_type value;
430 public:
431 binder1st(const _Operation& __x,
432 const typename _Operation::first_argument_type& __y)
433 : op(__x), value(__y) { }
435 typename _Operation::result_type
436 operator()(const typename _Operation::second_argument_type& __x) const
437 { return op(value, __x); }
439 // _GLIBCXX_RESOLVE_LIB_DEFECTS
440 // 109. Missing binders for non-const sequence elements
441 typename _Operation::result_type
442 operator()(typename _Operation::second_argument_type& __x) const
443 { return op(value, __x); }
446 /// One of the @link s20_3_6_binder binder functors@endlink.
447 template<typename _Operation, typename _Tp>
448 inline binder1st<_Operation>
449 bind1st(const _Operation& __fn, const _Tp& __x)
451 typedef typename _Operation::first_argument_type _Arg1_type;
452 return binder1st<_Operation>(__fn, _Arg1_type(__x));
455 /// One of the @link s20_3_6_binder binder functors@endlink.
456 template<typename _Operation>
457 class binder2nd
458 : public unary_function<typename _Operation::first_argument_type,
459 typename _Operation::result_type>
461 protected:
462 _Operation op;
463 typename _Operation::second_argument_type value;
465 public:
466 binder2nd(const _Operation& __x,
467 const typename _Operation::second_argument_type& __y)
468 : op(__x), value(__y) { }
470 typename _Operation::result_type
471 operator()(const typename _Operation::first_argument_type& __x) const
472 { return op(__x, value); }
474 // _GLIBCXX_RESOLVE_LIB_DEFECTS
475 // 109. Missing binders for non-const sequence elements
476 typename _Operation::result_type
477 operator()(typename _Operation::first_argument_type& __x) const
478 { return op(__x, value); }
481 /// One of the @link s20_3_6_binder binder functors@endlink.
482 template<typename _Operation, typename _Tp>
483 inline binder2nd<_Operation>
484 bind2nd(const _Operation& __fn, const _Tp& __x)
486 typedef typename _Operation::second_argument_type _Arg2_type;
487 return binder2nd<_Operation>(__fn, _Arg2_type(__x));
489 /** @} */
491 // 20.3.7 adaptors pointers functions
492 /** @defgroup s20_3_7_adaptors Adaptors for pointers to functions
493 * The advantage of function objects over pointers to functions is that
494 * the objects in the standard library declare nested typedefs describing
495 * their argument and result types with uniform names (e.g., @c result_type
496 * from the base classes @c unary_function and @c binary_function).
497 * Sometimes those typedefs are required, not just optional.
499 * Adaptors are provided to turn pointers to unary (single-argument) and
500 * binary (double-argument) functions into function objects. The
501 * long-winded functor @c pointer_to_unary_function is constructed with a
502 * function pointer @c f, and its @c operator() called with argument @c x
503 * returns @c f(x). The functor @c pointer_to_binary_function does the same
504 * thing, but with a double-argument @c f and @c operator().
506 * The function @c ptr_fun takes a pointer-to-function @c f and constructs
507 * an instance of the appropriate functor.
509 * @{
511 /// One of the @link s20_3_7_adaptors adaptors for function pointers@endlink.
512 template<typename _Arg, typename _Result>
513 class pointer_to_unary_function : public unary_function<_Arg, _Result>
515 protected:
516 _Result (*_M_ptr)(_Arg);
518 public:
519 pointer_to_unary_function() { }
521 explicit
522 pointer_to_unary_function(_Result (*__x)(_Arg))
523 : _M_ptr(__x) { }
525 _Result
526 operator()(_Arg __x) const
527 { return _M_ptr(__x); }
530 /// One of the @link s20_3_7_adaptors adaptors for function pointers@endlink.
531 template<typename _Arg, typename _Result>
532 inline pointer_to_unary_function<_Arg, _Result>
533 ptr_fun(_Result (*__x)(_Arg))
534 { return pointer_to_unary_function<_Arg, _Result>(__x); }
536 /// One of the @link s20_3_7_adaptors adaptors for function pointers@endlink.
537 template<typename _Arg1, typename _Arg2, typename _Result>
538 class pointer_to_binary_function
539 : public binary_function<_Arg1, _Arg2, _Result>
541 protected:
542 _Result (*_M_ptr)(_Arg1, _Arg2);
544 public:
545 pointer_to_binary_function() { }
547 explicit
548 pointer_to_binary_function(_Result (*__x)(_Arg1, _Arg2))
549 : _M_ptr(__x) { }
551 _Result
552 operator()(_Arg1 __x, _Arg2 __y) const
553 { return _M_ptr(__x, __y); }
556 /// One of the @link s20_3_7_adaptors adaptors for function pointers@endlink.
557 template<typename _Arg1, typename _Arg2, typename _Result>
558 inline pointer_to_binary_function<_Arg1, _Arg2, _Result>
559 ptr_fun(_Result (*__x)(_Arg1, _Arg2))
560 { return pointer_to_binary_function<_Arg1, _Arg2, _Result>(__x); }
561 /** @} */
563 template<typename _Tp>
564 struct _Identity : public unary_function<_Tp,_Tp>
566 _Tp&
567 operator()(_Tp& __x) const
568 { return __x; }
570 const _Tp&
571 operator()(const _Tp& __x) const
572 { return __x; }
575 template<typename _Pair>
576 struct _Select1st : public unary_function<_Pair,
577 typename _Pair::first_type>
579 typename _Pair::first_type&
580 operator()(_Pair& __x) const
581 { return __x.first; }
583 const typename _Pair::first_type&
584 operator()(const _Pair& __x) const
585 { return __x.first; }
588 template<typename _Pair>
589 struct _Select2nd : public unary_function<_Pair,
590 typename _Pair::second_type>
592 typename _Pair::second_type&
593 operator()(_Pair& __x) const
594 { return __x.second; }
596 const typename _Pair::second_type&
597 operator()(const _Pair& __x) const
598 { return __x.second; }
601 // 20.3.8 adaptors pointers members
602 /** @defgroup s20_3_8_memadaptors Adaptors for pointers to members
603 * There are a total of 8 = 2^3 function objects in this family.
604 * (1) Member functions taking no arguments vs member functions taking
605 * one argument.
606 * (2) Call through pointer vs call through reference.
607 * (3) Const vs non-const member function.
609 * All of this complexity is in the function objects themselves. You can
610 * ignore it by using the helper function mem_fun and mem_fun_ref,
611 * which create whichever type of adaptor is appropriate.
613 * @{
615 /// One of the @link s20_3_8_memadaptors adaptors for member
616 /// pointers@endlink.
617 template<typename _Ret, typename _Tp>
618 class mem_fun_t : public unary_function<_Tp*, _Ret>
620 public:
621 explicit
622 mem_fun_t(_Ret (_Tp::*__pf)())
623 : _M_f(__pf) { }
625 _Ret
626 operator()(_Tp* __p) const
627 { return (__p->*_M_f)(); }
629 private:
630 _Ret (_Tp::*_M_f)();
633 /// One of the @link s20_3_8_memadaptors adaptors for member
634 /// pointers@endlink.
635 template<typename _Ret, typename _Tp>
636 class const_mem_fun_t : public unary_function<const _Tp*, _Ret>
638 public:
639 explicit
640 const_mem_fun_t(_Ret (_Tp::*__pf)() const)
641 : _M_f(__pf) { }
643 _Ret
644 operator()(const _Tp* __p) const
645 { return (__p->*_M_f)(); }
647 private:
648 _Ret (_Tp::*_M_f)() const;
651 /// One of the @link s20_3_8_memadaptors adaptors for member
652 /// pointers@endlink.
653 template<typename _Ret, typename _Tp>
654 class mem_fun_ref_t : public unary_function<_Tp, _Ret>
656 public:
657 explicit
658 mem_fun_ref_t(_Ret (_Tp::*__pf)())
659 : _M_f(__pf) { }
661 _Ret
662 operator()(_Tp& __r) const
663 { return (__r.*_M_f)(); }
665 private:
666 _Ret (_Tp::*_M_f)();
669 /// One of the @link s20_3_8_memadaptors adaptors for member
670 /// pointers@endlink.
671 template<typename _Ret, typename _Tp>
672 class const_mem_fun_ref_t : public unary_function<_Tp, _Ret>
674 public:
675 explicit
676 const_mem_fun_ref_t(_Ret (_Tp::*__pf)() const)
677 : _M_f(__pf) { }
679 _Ret
680 operator()(const _Tp& __r) const
681 { return (__r.*_M_f)(); }
683 private:
684 _Ret (_Tp::*_M_f)() const;
687 /// One of the @link s20_3_8_memadaptors adaptors for member
688 /// pointers@endlink.
689 template<typename _Ret, typename _Tp, typename _Arg>
690 class mem_fun1_t : public binary_function<_Tp*, _Arg, _Ret>
692 public:
693 explicit
694 mem_fun1_t(_Ret (_Tp::*__pf)(_Arg))
695 : _M_f(__pf) { }
697 _Ret
698 operator()(_Tp* __p, _Arg __x) const
699 { return (__p->*_M_f)(__x); }
701 private:
702 _Ret (_Tp::*_M_f)(_Arg);
705 /// One of the @link s20_3_8_memadaptors adaptors for member
706 /// pointers@endlink.
707 template<typename _Ret, typename _Tp, typename _Arg>
708 class const_mem_fun1_t : public binary_function<const _Tp*, _Arg, _Ret>
710 public:
711 explicit
712 const_mem_fun1_t(_Ret (_Tp::*__pf)(_Arg) const)
713 : _M_f(__pf) { }
715 _Ret
716 operator()(const _Tp* __p, _Arg __x) const
717 { return (__p->*_M_f)(__x); }
719 private:
720 _Ret (_Tp::*_M_f)(_Arg) const;
723 /// One of the @link s20_3_8_memadaptors adaptors for member
724 /// pointers@endlink.
725 template<typename _Ret, typename _Tp, typename _Arg>
726 class mem_fun1_ref_t : public binary_function<_Tp, _Arg, _Ret>
728 public:
729 explicit
730 mem_fun1_ref_t(_Ret (_Tp::*__pf)(_Arg))
731 : _M_f(__pf) { }
733 _Ret
734 operator()(_Tp& __r, _Arg __x) const
735 { return (__r.*_M_f)(__x); }
737 private:
738 _Ret (_Tp::*_M_f)(_Arg);
741 /// One of the @link s20_3_8_memadaptors adaptors for member
742 /// pointers@endlink.
743 template<typename _Ret, typename _Tp, typename _Arg>
744 class const_mem_fun1_ref_t : public binary_function<_Tp, _Arg, _Ret>
746 public:
747 explicit
748 const_mem_fun1_ref_t(_Ret (_Tp::*__pf)(_Arg) const)
749 : _M_f(__pf) { }
751 _Ret
752 operator()(const _Tp& __r, _Arg __x) const
753 { return (__r.*_M_f)(__x); }
755 private:
756 _Ret (_Tp::*_M_f)(_Arg) const;
759 // Mem_fun adaptor helper functions. There are only two:
760 // mem_fun and mem_fun_ref.
761 template<typename _Ret, typename _Tp>
762 inline mem_fun_t<_Ret, _Tp>
763 mem_fun(_Ret (_Tp::*__f)())
764 { return mem_fun_t<_Ret, _Tp>(__f); }
766 template<typename _Ret, typename _Tp>
767 inline const_mem_fun_t<_Ret, _Tp>
768 mem_fun(_Ret (_Tp::*__f)() const)
769 { return const_mem_fun_t<_Ret, _Tp>(__f); }
771 template<typename _Ret, typename _Tp>
772 inline mem_fun_ref_t<_Ret, _Tp>
773 mem_fun_ref(_Ret (_Tp::*__f)())
774 { return mem_fun_ref_t<_Ret, _Tp>(__f); }
776 template<typename _Ret, typename _Tp>
777 inline const_mem_fun_ref_t<_Ret, _Tp>
778 mem_fun_ref(_Ret (_Tp::*__f)() const)
779 { return const_mem_fun_ref_t<_Ret, _Tp>(__f); }
781 template<typename _Ret, typename _Tp, typename _Arg>
782 inline mem_fun1_t<_Ret, _Tp, _Arg>
783 mem_fun(_Ret (_Tp::*__f)(_Arg))
784 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
786 template<typename _Ret, typename _Tp, typename _Arg>
787 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
788 mem_fun(_Ret (_Tp::*__f)(_Arg) const)
789 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
791 template<typename _Ret, typename _Tp, typename _Arg>
792 inline mem_fun1_ref_t<_Ret, _Tp, _Arg>
793 mem_fun_ref(_Ret (_Tp::*__f)(_Arg))
794 { return mem_fun1_ref_t<_Ret, _Tp, _Arg>(__f); }
796 template<typename _Ret, typename _Tp, typename _Arg>
797 inline const_mem_fun1_ref_t<_Ret, _Tp, _Arg>
798 mem_fun_ref(_Ret (_Tp::*__f)(_Arg) const)
799 { return const_mem_fun1_ref_t<_Ret, _Tp, _Arg>(__f); }
801 /** @} */
803 _GLIBCXX_END_NAMESPACE
805 #endif /* _STL_FUNCTION_H */