Tagged Questions
1
vote
1answer
61 views
Can I replace boost::bind with bind1st/2nd?
Just for better understanding, can I replace the call to boost::bind in the following example with std::bind1st/2nd? Or is it not possible because of returning a reference?
Example(shortened):
class ...
1
vote
2answers
578 views
how to use binder and bind2nd functors?
How to use binder2nd, bind2nd, and bind1st?
More specifically when to use them and are they necessary?
Also, I'm looking for some examples.
0
votes
3answers
96 views
C++ bind2nd question
This was one of the questions showed up on my Final exam. I can't figure out what I'm supposed to do.
I know BindSecArg requires a () operator, but not sure what goes inside.
In this question you are ...