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.
5
votes
1answer
117 views
Clojure Partial Application - How to get 'map' to return a collection of functions?
I have a function that I basically yanked from a discussion in the Clojure google group, that takes a collection and a list of functions of arbitrary length, and filters it to return a new collection ...
0
votes
2answers
113 views
Is partial macro application / currying possible in the C preprocessor?
As an example of the problem, is there any way to implement the macro partialconcat in the following code?
#define apply(f, x) f(x)
apply(partialconcat(he),llo) //should produce hello
EDIT:
...
0
votes
2answers
150 views
Getting partial constructors for case classes “for free”
Consider an abstract class defining two properties
abstract class A {
def a: Int
def b: Int
// real A has additional members
}
which is the base class for various case classes such as
case ...
2
votes
2answers
192 views
Partial Application - Eloquent Javascript
I am reading Eloquent Javascript and am having a difficult time understand the example below. Would anyone be able to do a line by line type explanation? Specifically, I'm confused as to why the first ...
6
votes
3answers
130 views
Why can't scala infer the type of the omitted parameters in partial application?
consider this :
scala> def sum(x:Int,y:Int) = x+y
sum: (x: Int, y: Int)Int
scala> sum(1,_:String)
<console>:9: error: type mismatch;
found : String
required: Int
...
2
votes
1answer
153 views
boost::bind member function - partial application chaining
I'm trying to chain together curried functions using boost::bind, and getting compiler errors that I can't resolve. The simplest example I can make which fails to compile:
#include <iostream>
...
0
votes
2answers
224 views
Partial application of operators
If I want to add a space at the end of a character to return a list, how would I accomplish this with partial application if I am passing no arguments?
Also would the type be?
space :: Char -> ...
1
vote
1answer
53 views
Is there an explicit type constructor for (->) in Coq?
I'm trying to define a class that provides identity and composition. Besides other useful instances (List with nil and concatenation; Relations with, well, identity and composition ;-) ), I'd like to ...
5
votes
3answers
133 views
Explanation of partial application - join
Why does partial application of functions with different signatures work?
Take Control.Monad.join as an example:
GHCi> :t (=<<)
(=<<) :: Monad m => (a -> m b) -> m a -> m ...
2
votes
4answers
113 views
binding a partially applied function in Haskell
I'm a Haskell newbie, so please excuse me if you find this question trivial:
How would I get GHCi to accept a declaration of this sort: let foo = fmap (*3) . fmap (+10)?
I tried adding a type ...
7
votes
1answer
142 views
What is a list of curried programming languages?
I just learned from another question that Haskell is called a curried programming language because it applies function currying by default. What are other languages that display this behavior?
3
votes
5answers
388 views
Can one partially apply the second argument of a function that takes no keyword arguments?
Take for example the python built in pow() function.
xs = [1,2,3,4,5,6,7,8]
from functools import partial
list(map(partial(pow,2),xs))
>>> [2, 4, 8, 16, 32, 128, 256]
but how would I ...
4
votes
1answer
519 views
Replace parameter in lambda expression
Considering this code:
public class Foo
{
public int a { get; set; }
public int b { get; set; }
}
private void Test()
{
List<Foo> foos = new List<Foo>();
foos.Add(new ...
11
votes
3answers
452 views
Partial Application with Infix Functions
While I understand a little about currying in the mathematical sense, partially
applying an infix function was a new concept which I discovered after diving
into the book Learn You a Haskell for ...
0
votes
2answers
153 views
Is there an equivalent of partial application for return values?
If papply returns a function of less arity than an input function, is there a similar FP operation with returns a function which returns a value regardless of the value of the input function? If so, ...
1
vote
2answers
183 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 ...
5
votes
2answers
327 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) _
...
1
vote
1answer
43 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 ...
17
votes
4answers
2k views
What's the difference between multiple parameters lists and multiple parameters per list in Scala?
In Scala one can write (curried?) functions like this
def curriedFunc(arg1: Int) (arg2: String) = { ... }
What is the difference between the above curriedFunc function definition with two ...
6
votes
2answers
105 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)
...
3
votes
5answers
213 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). ...
2
votes
1answer
118 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 ...
23
votes
6answers
1k 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.
59
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 ...
7
votes
3answers
287 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 ...
29
votes
5answers
3k views
Why does Scala provide both multiple parameters lists and multiple parameters per list? [duplicate]
Multiple parameters lists, e.g. def foo(a:Int)(b:Int) = {} and multiple parameters per list, e.g. def foo(a:Int, b:Int) = {} are semantically equivalent so far as I can tell, and most functional ...
9
votes
4answers
752 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 ...
0
votes
2answers
273 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 ...
18
votes
4answers
453 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
...
3
votes
3answers
684 views
Haskell - Currying? Need further explanation
So something like
addList :: [int] -> int
addList = foldl1 (+)
Why does this work? The Currying part. Why no variable?
32
votes
3answers
9k 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 = ...
4
votes
3answers
572 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 ...
99
votes
7answers
7k 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 ...
