os/ossrv/ossrv_pub/boost_apis/boost/functional.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// ------------------------------------------------------------------------------
sl@0
     2
// Copyright (c) 2000 Cadenza New Zealand Ltd
sl@0
     3
// Distributed under the Boost Software License, Version 1.0. (See accompany-
sl@0
     4
// ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     5
// ------------------------------------------------------------------------------
sl@0
     6
// Boost functional.hpp header file
sl@0
     7
// See http://www.boost.org/libs/functional for documentation.
sl@0
     8
// ------------------------------------------------------------------------------
sl@0
     9
// $Id: functional.hpp,v 1.4.20.1 2006/12/02 14:17:26 andreas_huber69 Exp $
sl@0
    10
// ------------------------------------------------------------------------------
sl@0
    11
sl@0
    12
#ifndef BOOST_FUNCTIONAL_HPP
sl@0
    13
#define BOOST_FUNCTIONAL_HPP
sl@0
    14
sl@0
    15
#include <boost/config.hpp>
sl@0
    16
#include <boost/call_traits.hpp>
sl@0
    17
#include <functional>
sl@0
    18
sl@0
    19
namespace boost
sl@0
    20
{
sl@0
    21
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
    22
    // --------------------------------------------------------------------------
sl@0
    23
    // The following traits classes allow us to avoid the need for ptr_fun
sl@0
    24
    // because the types of arguments and the result of a function can be 
sl@0
    25
    // deduced.
sl@0
    26
    //
sl@0
    27
    // In addition to the standard types defined in unary_function and 
sl@0
    28
    // binary_function, we add
sl@0
    29
    //
sl@0
    30
    // - function_type, the type of the function or function object itself.
sl@0
    31
    //
sl@0
    32
    // - param_type, the type that should be used for passing the function or
sl@0
    33
    //   function object as an argument.
sl@0
    34
    // --------------------------------------------------------------------------
sl@0
    35
    namespace detail
sl@0
    36
    {
sl@0
    37
        template <class Operation>
sl@0
    38
        struct unary_traits_imp;
sl@0
    39
        
sl@0
    40
        template <class Operation>
sl@0
    41
        struct unary_traits_imp<Operation*>
sl@0
    42
        {
sl@0
    43
            typedef Operation                         function_type;
sl@0
    44
            typedef const function_type &             param_type;
sl@0
    45
            typedef typename Operation::result_type   result_type;
sl@0
    46
            typedef typename Operation::argument_type argument_type;
sl@0
    47
        };
sl@0
    48
sl@0
    49
        template <class R, class A>
sl@0
    50
        struct unary_traits_imp<R(*)(A)>
sl@0
    51
        {
sl@0
    52
            typedef R (*function_type)(A);
sl@0
    53
            typedef R (*param_type)(A);
sl@0
    54
            typedef R result_type;
sl@0
    55
            typedef A argument_type;
sl@0
    56
        };
sl@0
    57
sl@0
    58
        template <class Operation>
sl@0
    59
        struct binary_traits_imp;
sl@0
    60
sl@0
    61
        template <class Operation>
sl@0
    62
        struct binary_traits_imp<Operation*>
sl@0
    63
        {
sl@0
    64
            typedef Operation                                function_type;
sl@0
    65
            typedef const function_type &                    param_type;
sl@0
    66
            typedef typename Operation::result_type          result_type;
sl@0
    67
            typedef typename Operation::first_argument_type  first_argument_type;
sl@0
    68
            typedef typename Operation::second_argument_type second_argument_type;
sl@0
    69
        };
sl@0
    70
        
sl@0
    71
        template <class R, class A1, class A2>
sl@0
    72
        struct binary_traits_imp<R(*)(A1,A2)>
sl@0
    73
        {
sl@0
    74
            typedef R (*function_type)(A1,A2);
sl@0
    75
            typedef R (*param_type)(A1,A2);
sl@0
    76
            typedef R result_type;
sl@0
    77
            typedef A1 first_argument_type;
sl@0
    78
            typedef A2 second_argument_type;
sl@0
    79
        };
sl@0
    80
    } // namespace detail
sl@0
    81
    
sl@0
    82
    template <class Operation>
sl@0
    83
    struct unary_traits
sl@0
    84
    {
sl@0
    85
        typedef typename detail::unary_traits_imp<Operation*>::function_type function_type;
sl@0
    86
        typedef typename detail::unary_traits_imp<Operation*>::param_type    param_type;
sl@0
    87
        typedef typename detail::unary_traits_imp<Operation*>::result_type   result_type;
sl@0
    88
        typedef typename detail::unary_traits_imp<Operation*>::argument_type argument_type;
sl@0
    89
    }; 
sl@0
    90
sl@0
    91
    template <class R, class A>
sl@0
    92
    struct unary_traits<R(*)(A)>
sl@0
    93
    {
sl@0
    94
        typedef R (*function_type)(A);
sl@0
    95
        typedef R (*param_type)(A);
sl@0
    96
        typedef R result_type;
sl@0
    97
        typedef A argument_type;
sl@0
    98
    };
sl@0
    99
sl@0
   100
    template <class Operation>
sl@0
   101
    struct binary_traits
sl@0
   102
    {
sl@0
   103
        typedef typename detail::binary_traits_imp<Operation*>::function_type        function_type;
sl@0
   104
        typedef typename detail::binary_traits_imp<Operation*>::param_type           param_type;
sl@0
   105
        typedef typename detail::binary_traits_imp<Operation*>::result_type          result_type;
sl@0
   106
        typedef typename detail::binary_traits_imp<Operation*>::first_argument_type  first_argument_type;
sl@0
   107
        typedef typename detail::binary_traits_imp<Operation*>::second_argument_type second_argument_type;
sl@0
   108
    };
sl@0
   109
    
sl@0
   110
    template <class R, class A1, class A2>
sl@0
   111
    struct binary_traits<R(*)(A1,A2)>
sl@0
   112
    {
sl@0
   113
        typedef R (*function_type)(A1,A2);
sl@0
   114
        typedef R (*param_type)(A1,A2);
sl@0
   115
        typedef R result_type;
sl@0
   116
        typedef A1 first_argument_type;
sl@0
   117
        typedef A2 second_argument_type;
sl@0
   118
    };
sl@0
   119
#else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   120
    // --------------------------------------------------------------------------
sl@0
   121
    // If we have no partial specialisation available, decay to a situation
sl@0
   122
    // that is no worse than in the Standard, i.e., ptr_fun will be required.
sl@0
   123
    // --------------------------------------------------------------------------
sl@0
   124
sl@0
   125
    template <class Operation>
sl@0
   126
    struct unary_traits
sl@0
   127
    {
sl@0
   128
        typedef Operation                         function_type;
sl@0
   129
        typedef const Operation&                  param_type;
sl@0
   130
        typedef typename Operation::result_type   result_type;
sl@0
   131
        typedef typename Operation::argument_type argument_type;
sl@0
   132
    }; 
sl@0
   133
    
sl@0
   134
    template <class Operation>
sl@0
   135
    struct binary_traits
sl@0
   136
    {
sl@0
   137
        typedef Operation                                function_type;
sl@0
   138
        typedef const Operation &                        param_type;
sl@0
   139
        typedef typename Operation::result_type          result_type;
sl@0
   140
        typedef typename Operation::first_argument_type  first_argument_type;
sl@0
   141
        typedef typename Operation::second_argument_type second_argument_type;
sl@0
   142
    };    
sl@0
   143
#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   144
    
sl@0
   145
    // --------------------------------------------------------------------------
sl@0
   146
    // unary_negate, not1
sl@0
   147
    // --------------------------------------------------------------------------
sl@0
   148
    template <class Predicate>
sl@0
   149
    class unary_negate
sl@0
   150
        : public std::unary_function<typename unary_traits<Predicate>::argument_type,bool>
sl@0
   151
    {
sl@0
   152
      public:
sl@0
   153
        explicit unary_negate(typename unary_traits<Predicate>::param_type x)
sl@0
   154
            :
sl@0
   155
            pred(x)
sl@0
   156
        {}
sl@0
   157
        bool operator()(typename call_traits<typename unary_traits<Predicate>::argument_type>::param_type x) const
sl@0
   158
        {
sl@0
   159
            return !pred(x);
sl@0
   160
        }
sl@0
   161
      private:
sl@0
   162
        typename unary_traits<Predicate>::function_type pred;
sl@0
   163
    };
sl@0
   164
sl@0
   165
    template <class Predicate>
sl@0
   166
    unary_negate<Predicate> not1(const Predicate &pred)
sl@0
   167
    {
sl@0
   168
        // The cast is to placate Borland C++Builder in certain circumstances.
sl@0
   169
        // I don't think it should be necessary.
sl@0
   170
        return unary_negate<Predicate>((typename unary_traits<Predicate>::param_type)pred);
sl@0
   171
    }
sl@0
   172
sl@0
   173
    template <class Predicate>
sl@0
   174
    unary_negate<Predicate> not1(Predicate &pred)
sl@0
   175
    {
sl@0
   176
        return unary_negate<Predicate>(pred);
sl@0
   177
    }
sl@0
   178
sl@0
   179
    // --------------------------------------------------------------------------
sl@0
   180
    // binary_negate, not2
sl@0
   181
    // --------------------------------------------------------------------------
sl@0
   182
    template <class Predicate>
sl@0
   183
    class binary_negate
sl@0
   184
        : public std::binary_function<typename binary_traits<Predicate>::first_argument_type,
sl@0
   185
                                      typename binary_traits<Predicate>::second_argument_type,
sl@0
   186
                                      bool>
sl@0
   187
    {
sl@0
   188
      public:
sl@0
   189
        explicit binary_negate(typename binary_traits<Predicate>::param_type x)
sl@0
   190
            :
sl@0
   191
            pred(x)
sl@0
   192
        {}
sl@0
   193
        bool operator()(typename call_traits<typename binary_traits<Predicate>::first_argument_type>::param_type x,
sl@0
   194
                        typename call_traits<typename binary_traits<Predicate>::second_argument_type>::param_type y) const
sl@0
   195
        {
sl@0
   196
            return !pred(x,y);
sl@0
   197
        }
sl@0
   198
      private:
sl@0
   199
        typename binary_traits<Predicate>::function_type pred;
sl@0
   200
    };
sl@0
   201
sl@0
   202
    template <class Predicate>
sl@0
   203
    binary_negate<Predicate> not2(const Predicate &pred)
sl@0
   204
    {
sl@0
   205
        // The cast is to placate Borland C++Builder in certain circumstances.
sl@0
   206
        // I don't think it should be necessary.
sl@0
   207
        return binary_negate<Predicate>((typename binary_traits<Predicate>::param_type)pred);
sl@0
   208
    }
sl@0
   209
sl@0
   210
    template <class Predicate>
sl@0
   211
    binary_negate<Predicate> not2(Predicate &pred)
sl@0
   212
    {
sl@0
   213
        return binary_negate<Predicate>(pred);
sl@0
   214
    }
sl@0
   215
        
sl@0
   216
    // --------------------------------------------------------------------------
sl@0
   217
    // binder1st, bind1st
sl@0
   218
    // --------------------------------------------------------------------------
sl@0
   219
    template <class Operation>
sl@0
   220
    class binder1st
sl@0
   221
        : public std::unary_function<typename binary_traits<Operation>::second_argument_type,
sl@0
   222
                                     typename binary_traits<Operation>::result_type>
sl@0
   223
    {       
sl@0
   224
      public:
sl@0
   225
        binder1st(typename binary_traits<Operation>::param_type x,
sl@0
   226
                  typename call_traits<typename binary_traits<Operation>::first_argument_type>::param_type y)
sl@0
   227
            :
sl@0
   228
            op(x), value(y)
sl@0
   229
        {}
sl@0
   230
        
sl@0
   231
        typename binary_traits<Operation>::result_type
sl@0
   232
        operator()(typename call_traits<typename binary_traits<Operation>::second_argument_type>::param_type x) const
sl@0
   233
        {
sl@0
   234
            return op(value, x);
sl@0
   235
        }
sl@0
   236
        
sl@0
   237
      protected:
sl@0
   238
        typename binary_traits<Operation>::function_type op;
sl@0
   239
        typename binary_traits<Operation>::first_argument_type value;
sl@0
   240
    };
sl@0
   241
sl@0
   242
    template <class Operation>
sl@0
   243
    inline binder1st<Operation> bind1st(const Operation &op,
sl@0
   244
                                        typename call_traits<
sl@0
   245
                                                    typename binary_traits<Operation>::first_argument_type
sl@0
   246
                                        >::param_type x)
sl@0
   247
    {
sl@0
   248
        // The cast is to placate Borland C++Builder in certain circumstances.
sl@0
   249
        // I don't think it should be necessary.
sl@0
   250
        return binder1st<Operation>((typename binary_traits<Operation>::param_type)op, x);
sl@0
   251
    }
sl@0
   252
sl@0
   253
    template <class Operation>
sl@0
   254
    inline binder1st<Operation> bind1st(Operation &op,
sl@0
   255
                                        typename call_traits<
sl@0
   256
                                                    typename binary_traits<Operation>::first_argument_type
sl@0
   257
                                        >::param_type x)
sl@0
   258
    {
sl@0
   259
        return binder1st<Operation>(op, x);
sl@0
   260
    }
sl@0
   261
sl@0
   262
    // --------------------------------------------------------------------------
sl@0
   263
    // binder2nd, bind2nd
sl@0
   264
    // --------------------------------------------------------------------------
sl@0
   265
    template <class Operation>
sl@0
   266
    class binder2nd
sl@0
   267
        : public std::unary_function<typename binary_traits<Operation>::first_argument_type,
sl@0
   268
                                     typename binary_traits<Operation>::result_type>
sl@0
   269
    {
sl@0
   270
      public:
sl@0
   271
        binder2nd(typename binary_traits<Operation>::param_type x,
sl@0
   272
                  typename call_traits<typename binary_traits<Operation>::second_argument_type>::param_type y)
sl@0
   273
            :
sl@0
   274
            op(x), value(y)
sl@0
   275
        {}
sl@0
   276
        
sl@0
   277
        typename binary_traits<Operation>::result_type
sl@0
   278
        operator()(typename call_traits<typename binary_traits<Operation>::first_argument_type>::param_type x) const
sl@0
   279
        {
sl@0
   280
            return op(x, value);
sl@0
   281
        }               
sl@0
   282
        
sl@0
   283
      protected:
sl@0
   284
        typename binary_traits<Operation>::function_type op;
sl@0
   285
        typename binary_traits<Operation>::second_argument_type value;
sl@0
   286
    };
sl@0
   287
sl@0
   288
    template <class Operation>
sl@0
   289
    inline binder2nd<Operation> bind2nd(const Operation &op,
sl@0
   290
                                        typename call_traits<
sl@0
   291
                                                    typename binary_traits<Operation>::second_argument_type
sl@0
   292
                                        >::param_type x)
sl@0
   293
    {
sl@0
   294
        // The cast is to placate Borland C++Builder in certain circumstances.
sl@0
   295
        // I don't think it should be necessary.
sl@0
   296
        return binder2nd<Operation>((typename binary_traits<Operation>::param_type)op, x);
sl@0
   297
    }
sl@0
   298
sl@0
   299
    template <class Operation>
sl@0
   300
    inline binder2nd<Operation> bind2nd(Operation &op,
sl@0
   301
                                        typename call_traits<
sl@0
   302
                                                    typename binary_traits<Operation>::second_argument_type
sl@0
   303
                                        >::param_type x)
sl@0
   304
    {
sl@0
   305
        return binder2nd<Operation>(op, x);
sl@0
   306
    }
sl@0
   307
sl@0
   308
    // --------------------------------------------------------------------------
sl@0
   309
    // mem_fun, etc
sl@0
   310
    // --------------------------------------------------------------------------
sl@0
   311
    template <class S, class T>
sl@0
   312
    class mem_fun_t : public std::unary_function<T*, S>
sl@0
   313
    {
sl@0
   314
      public:
sl@0
   315
        explicit mem_fun_t(S (T::*p)())
sl@0
   316
            :
sl@0
   317
            ptr(p)
sl@0
   318
        {}
sl@0
   319
        S operator()(T* p) const
sl@0
   320
        {
sl@0
   321
            return (p->*ptr)();
sl@0
   322
        }
sl@0
   323
      private:
sl@0
   324
        S (T::*ptr)();
sl@0
   325
    };
sl@0
   326
sl@0
   327
    template <class S, class T, class A>
sl@0
   328
    class mem_fun1_t : public std::binary_function<T*, A, S>
sl@0
   329
    {
sl@0
   330
      public:   
sl@0
   331
        explicit mem_fun1_t(S (T::*p)(A))
sl@0
   332
            :
sl@0
   333
            ptr(p)
sl@0
   334
        {}
sl@0
   335
        S operator()(T* p, typename call_traits<A>::param_type x) const
sl@0
   336
        {
sl@0
   337
            return (p->*ptr)(x);
sl@0
   338
        }
sl@0
   339
      private:
sl@0
   340
        S (T::*ptr)(A);
sl@0
   341
    };
sl@0
   342
sl@0
   343
    template <class S, class T>
sl@0
   344
    class const_mem_fun_t : public std::unary_function<const T*, S>
sl@0
   345
    {
sl@0
   346
      public:
sl@0
   347
        explicit const_mem_fun_t(S (T::*p)() const)
sl@0
   348
            :
sl@0
   349
            ptr(p)
sl@0
   350
        {}
sl@0
   351
        S operator()(const T* p) const
sl@0
   352
        {
sl@0
   353
            return (p->*ptr)();
sl@0
   354
        }
sl@0
   355
      private:
sl@0
   356
        S (T::*ptr)() const;        
sl@0
   357
    };
sl@0
   358
sl@0
   359
    template <class S, class T, class A>
sl@0
   360
    class const_mem_fun1_t : public std::binary_function<const T*, A, S>
sl@0
   361
    {
sl@0
   362
      public:
sl@0
   363
        explicit const_mem_fun1_t(S (T::*p)(A) const)
sl@0
   364
            :
sl@0
   365
            ptr(p)
sl@0
   366
        {}
sl@0
   367
        S operator()(const T* p, typename call_traits<A>::param_type x) const
sl@0
   368
        {
sl@0
   369
            return (p->*ptr)(x);
sl@0
   370
        }
sl@0
   371
      private:
sl@0
   372
        S (T::*ptr)(A) const;
sl@0
   373
    };
sl@0
   374
    
sl@0
   375
    template<class S, class T>
sl@0
   376
    inline mem_fun_t<S,T> mem_fun(S (T::*f)())
sl@0
   377
    {
sl@0
   378
        return mem_fun_t<S,T>(f);
sl@0
   379
    }
sl@0
   380
    
sl@0
   381
    template<class S, class T, class A>
sl@0
   382
    inline mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A))
sl@0
   383
    {
sl@0
   384
        return mem_fun1_t<S,T,A>(f);
sl@0
   385
    }
sl@0
   386
sl@0
   387
#ifndef BOOST_NO_POINTER_TO_MEMBER_CONST
sl@0
   388
    template<class S, class T>
sl@0
   389
    inline const_mem_fun_t<S,T> mem_fun(S (T::*f)() const)
sl@0
   390
    {
sl@0
   391
        return const_mem_fun_t<S,T>(f);
sl@0
   392
    }
sl@0
   393
    
sl@0
   394
    template<class S, class T, class A>
sl@0
   395
    inline const_mem_fun1_t<S,T,A> mem_fun(S (T::*f)(A) const)
sl@0
   396
    {
sl@0
   397
        return const_mem_fun1_t<S,T,A>(f);
sl@0
   398
    }
sl@0
   399
#endif // BOOST_NO_POINTER_TO_MEMBER_CONST
sl@0
   400
sl@0
   401
    // --------------------------------------------------------------------------
sl@0
   402
    // mem_fun_ref, etc
sl@0
   403
    // --------------------------------------------------------------------------
sl@0
   404
    template <class S, class T>
sl@0
   405
    class mem_fun_ref_t : public std::unary_function<T&, S>
sl@0
   406
    {
sl@0
   407
      public:
sl@0
   408
        explicit mem_fun_ref_t(S (T::*p)())
sl@0
   409
            :
sl@0
   410
            ptr(p)
sl@0
   411
        {}
sl@0
   412
        S operator()(T& p) const
sl@0
   413
        {
sl@0
   414
            return (p.*ptr)();
sl@0
   415
        }
sl@0
   416
      private:
sl@0
   417
        S (T::*ptr)();
sl@0
   418
    };
sl@0
   419
sl@0
   420
    template <class S, class T, class A>
sl@0
   421
    class mem_fun1_ref_t : public std::binary_function<T&, A, S>
sl@0
   422
    {
sl@0
   423
      public:
sl@0
   424
        explicit mem_fun1_ref_t(S (T::*p)(A))
sl@0
   425
            :
sl@0
   426
            ptr(p)
sl@0
   427
        {}
sl@0
   428
        S operator()(T& p, typename call_traits<A>::param_type x) const
sl@0
   429
        {
sl@0
   430
            return (p.*ptr)(x);
sl@0
   431
        }
sl@0
   432
      private:
sl@0
   433
        S (T::*ptr)(A);
sl@0
   434
    };
sl@0
   435
    
sl@0
   436
    template <class S, class T>
sl@0
   437
    class const_mem_fun_ref_t : public std::unary_function<const T&, S>
sl@0
   438
    {
sl@0
   439
      public:
sl@0
   440
        explicit const_mem_fun_ref_t(S (T::*p)() const)
sl@0
   441
            :
sl@0
   442
            ptr(p)
sl@0
   443
        {}
sl@0
   444
        
sl@0
   445
        S operator()(const T &p) const
sl@0
   446
        {
sl@0
   447
            return (p.*ptr)();
sl@0
   448
        }
sl@0
   449
      private:
sl@0
   450
        S (T::*ptr)() const;
sl@0
   451
    };
sl@0
   452
sl@0
   453
    template <class S, class T, class A>
sl@0
   454
    class const_mem_fun1_ref_t : public std::binary_function<const T&, A, S>
sl@0
   455
    {
sl@0
   456
      public:
sl@0
   457
        explicit const_mem_fun1_ref_t(S (T::*p)(A) const)
sl@0
   458
            :
sl@0
   459
            ptr(p)
sl@0
   460
        {}
sl@0
   461
sl@0
   462
        S operator()(const T& p, typename call_traits<A>::param_type x) const
sl@0
   463
        {
sl@0
   464
            return (p.*ptr)(x);
sl@0
   465
        }
sl@0
   466
      private:
sl@0
   467
        S (T::*ptr)(A) const;
sl@0
   468
    };
sl@0
   469
    
sl@0
   470
    template<class S, class T>
sl@0
   471
    inline mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)())
sl@0
   472
    {
sl@0
   473
        return mem_fun_ref_t<S,T>(f);
sl@0
   474
    }
sl@0
   475
sl@0
   476
    template<class S, class T, class A>
sl@0
   477
    inline mem_fun1_ref_t<S,T,A> mem_fun_ref(S (T::*f)(A))
sl@0
   478
    {
sl@0
   479
        return mem_fun1_ref_t<S,T,A>(f);
sl@0
   480
    }
sl@0
   481
sl@0
   482
#ifndef BOOST_NO_POINTER_TO_MEMBER_CONST
sl@0
   483
    template<class S, class T>
sl@0
   484
    inline const_mem_fun_ref_t<S,T> mem_fun_ref(S (T::*f)() const)
sl@0
   485
    {
sl@0
   486
        return const_mem_fun_ref_t<S,T>(f);
sl@0
   487
    }
sl@0
   488
sl@0
   489
    template<class S, class T, class A>
sl@0
   490
    inline const_mem_fun1_ref_t<S,T,A> mem_fun_ref(S (T::*f)(A) const)
sl@0
   491
    {
sl@0
   492
        return const_mem_fun1_ref_t<S,T,A>(f);
sl@0
   493
    }   
sl@0
   494
#endif // BOOST_NO_POINTER_TO_MEMBER_CONST
sl@0
   495
sl@0
   496
    // --------------------------------------------------------------------------
sl@0
   497
    // ptr_fun
sl@0
   498
    // --------------------------------------------------------------------------
sl@0
   499
    template <class Arg, class Result>
sl@0
   500
    class pointer_to_unary_function : public std::unary_function<Arg,Result>
sl@0
   501
    {
sl@0
   502
      public:
sl@0
   503
        explicit pointer_to_unary_function(Result (*f)(Arg))
sl@0
   504
            :
sl@0
   505
            func(f)
sl@0
   506
        {}
sl@0
   507
sl@0
   508
        Result operator()(typename call_traits<Arg>::param_type x) const
sl@0
   509
        {
sl@0
   510
            return func(x);
sl@0
   511
        }
sl@0
   512
        
sl@0
   513
      private:
sl@0
   514
        Result (*func)(Arg);
sl@0
   515
    };
sl@0
   516
sl@0
   517
    template <class Arg, class Result>
sl@0
   518
    inline pointer_to_unary_function<Arg,Result> ptr_fun(Result (*f)(Arg))
sl@0
   519
    {
sl@0
   520
        return pointer_to_unary_function<Arg,Result>(f);
sl@0
   521
    }
sl@0
   522
sl@0
   523
    template <class Arg1, class Arg2, class Result>
sl@0
   524
    class pointer_to_binary_function : public std::binary_function<Arg1,Arg2,Result>
sl@0
   525
    {
sl@0
   526
      public:
sl@0
   527
        explicit pointer_to_binary_function(Result (*f)(Arg1, Arg2))
sl@0
   528
            :
sl@0
   529
            func(f)
sl@0
   530
        {}
sl@0
   531
        
sl@0
   532
        Result operator()(typename call_traits<Arg1>::param_type x, typename call_traits<Arg2>::param_type y) const
sl@0
   533
        {
sl@0
   534
            return func(x,y);
sl@0
   535
        }
sl@0
   536
        
sl@0
   537
      private:
sl@0
   538
        Result (*func)(Arg1, Arg2);
sl@0
   539
    };
sl@0
   540
sl@0
   541
    template <class Arg1, class Arg2, class Result>
sl@0
   542
    inline pointer_to_binary_function<Arg1,Arg2,Result> ptr_fun(Result (*f)(Arg1, Arg2))
sl@0
   543
    {
sl@0
   544
        return pointer_to_binary_function<Arg1,Arg2,Result>(f);
sl@0
   545
    }
sl@0
   546
} // namespace boost
sl@0
   547
sl@0
   548
#endif