Boost logo

Boost Users :

From: Jonathan Turkanis (technews_at_[hidden])
Date: 2005-02-11 16:15:57


Jonathan Biggar wrote:
> I can use boost::bind to use a function that takes several arguments
> in a context where it is passed fewer arguments:

> Is there something a way to do the reverse, which is to call a
> function that takes fewer arguments in a context where it is passed
> more arguments?
>
> void f3(int);
>
> boost::function<void(int,double)> f4(/*what goes in here?*/);

        bind(f3, _1)

> f4(1, 1.0);

Jonathan


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net