Tagged Questions
The bind2nd tag has no wiki summary.
4
votes
1answer
216 views
Is there a built-in Haskell equivalent for C++'s std::bind2nd?
What I'm missing is the ability to partially apply the second argument of a function rather than the first. This is especially useful when I want to pass the function to something like map, but ...
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
581 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 ...