Tagged Questions
Partial application is a programming technique for passing less than the full number of arguments to a function, in order to yield a new function that can be used later. It is particularly common in functional languages that support currying.
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
686 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 ...
17
votes
4answers
381 views
Is performance of partial or curried functions well defined in Haskell?
In the following code:
ismaxl :: (Ord a) => [a] -> a -> Bool
ismaxl l x = x == maxel
where maxel = maximum l
main = do
let mylist = [1, 2, 3, 5]
let ismax = ismaxl mylist
...
14
votes
5answers
373 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.
11
votes
3answers
2k views
Python: Why is functools.partial necessary?
Partial application is cool. What functionality does functools.partial offer that you can't get through lambdas?
>>> sum = lambda x, y : x + y
>>> sum(1, 2)
3
>>> incr = ...
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 ...
7
votes
4answers
492 views
What is the best pattern to curry delegate parameters (using .NET 2.0 or later)?
Sometimes it is useful to take a method call, complete with parameters, and turn it into a MethodInvoker which will invoke the indicated function with those parameters, without having to specify the ...
6
votes
4answers
279 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
182 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
5answers
184 views
anyone know how to use a partially applied three argument function infix (haskell)
I want to apply a 3 argument function in different ways based on a boolean value (one of the arguments).
I'd like to be able to apply it in an infix manner so I can chain it (example below). ...
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
2
votes
1answer
98 views
Is there a name for this partial-application--like functional programming technique?
I have a function f: (a, b, c = 5, d = 0) -> {...} that takes between 2 and 4 arguments.
I want to pass a "bound" version of this function that always uses the defaults for the last arguments, but ...
2
votes
3answers
413 views
F# passing an operator with arguments to a function
Can you pass in an operation like "divide by 2" or "subtract 1" using just a partially applied operator, where "add 1" looks like this:
List.map ((+) 1) [1..5];; //equals [2..6]
// instead of having ...
1
vote
2answers
104 views
Is it possible to get a (n-1)-argument function out of a n-argument function by setting one argument to a fixed value?
I was wondering if in C++ it was possible to get a function taking (n-1) arguments out of a function taking n arguments by setting the value for the nth argument to some value (to be determined at ...
1
vote
1answer
32 views
Terminology: Partial application where the unbound argument is a function?
... partial application (or partial function application) refers to the process of fixing a
number of arguments to a function, producing another function of smaller arity.
I would like to find ...
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 ...