Tagged Questions

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 ...