Name

bind1st - A helper template function that creates an adaptor to convert a binary function object into a unary function object.


Library

libstdcpp.lib


Synopsis

#include <functional>
template <class _Operation>
class binder1st : public unary_function<typename
               _Operation::second_argument_type,
               typename _Operation::result_type> ;
 
template <class _Operation, class Tp>
binder1st<_Operation> bind1st (const _Operation&, const Tp&);
 
template <class _Operation>
class binder2nd : public unary_function<typename
               _Operation::first_argument_type,
               typename _Operation::result_type> ;
 
template <class _Operation, class Tp>
binder2nd<_Operation> bind2nd (const _Operation&, const Tp&);

Detailed Description

Click here for more details.


Limitation

None


Feedback

For additional information or queries on this page send feedback.


© 2008 Nokia Corporation. All rights reserved. This documentation can be used in the connection with this Product to help and support the user.

Top