Standard C++ Library Class Reference

Click on the banner to return to the Class Reference home page.
©Copyright 1996 Rogue Wave Software
bind1st, bind2nd, binder1st, binder2nd
Function Object
Summary
Templatized utilities to bind values to function objects
Contents
Synopsis
Description
Interface
Example
Warnings
See Also
Synopsis
#include <functional>
template <class Operation>
class binder1st : public unary_function<typename
Operation::second_argument_type,
typename Operation::result_type> ;
template <class Operation, class T>
binder1st<Operation> bind1st (const Operation&, const T&);
template <class Operation>
class binder2nd : public unary_function<typename
Operation::first_argument_type,
typename Operation::result_type> ;
template <class Operation, class T>
binder2nd<Operation> bind2nd (const Operation&, const T&);