Tagged Questions
50
votes
3answers
2k views
Ordering of parameters to make use of currying
I have twice recently refactored code in order to change the order of parameters because there was too much code where hacks like flip or \x -> foo bar x 42 were happening.
When designing a ...
47
votes
3answers
3k views
What is the difference between currying and partial application
I'm not exactly sure how to word this question.
I learnt what currying was in the first year of university, and have been using it where applicable ever since.
However, I quite often see on the ...
18
votes
4answers
687 views
Why does Scala provide both multiple parameters lists and multiple parameters per list?
They are semantically equivalent so far as I can tell, and most functional languages have only one way of declaring multiple parameters (e.g., F#).
The only reason I can figure out for supporting ...
14
votes
5answers
375 views
Does java support Currying?
I was wondering if there is any way to pull that in Java. I think it is not possible without native support for closures.
7
votes
3answers
241 views
How is a partial application represented at runtime?
When I write something like map (1+) list in Haskell, what is the internal representation of (1+)? Since it is a partial application of (+), the argument 1 has to be saved somewhere, but I can't get ...
6
votes
4answers
283 views
What is a curried function in Scala?
In scala there are curried functions like this
def curriedFunc(arg1: Int) (arg2:String) = { ... }
But what is the difference between that and simple functions like this
def curriedFunc(arg1: Int, ...
6
votes
2answers
71 views
How to partially apply member functions in JavaScript?
I currently have a partial-application function which looks like this:
Function.prototype.curry = function()
{
var args = [];
for(var i = 0; i < arguments.length; ++i)
...
5
votes
2answers
183 views
Syntax for partial application of curried functions with reverse-associative infix notation
In other words, is there a good reason why this shouldn't compile?
def f(xs: List[Int]) = xs.foldLeft(0) _ // OK
def f(xs: List[Int]) = (xs :\ 0) _ // OK
def f(xs: List[Int]) = (0 /: xs) _
...
3
votes
3answers
398 views
Haskell - Currying? Need further explanation
So something like
addList :: [int] -> int
addList = foldl1 (+)
Why does this work? The Currying part. Why no variable?
Thanks
0
votes
2answers
198 views
Function currying in Haskell
I have a function:
powerOf :: Int -> Int -> Int
example os usage:
*Main Data.List> powerOf 100 2
2
*Main Data.List> powerOf 100 5
2
I have two questions. First - why it doesn't ...