Tagged Questions
Currying is the process of transforming a function that takes /n/ arguments, into a series of /n/ functions that take one argument each. Languages such as Haskell use this as the default argument application mechanism, as it makes certain programming techniques, such as partial application, much easier.
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 ...
48
votes
3answers
3k views
Haskell function application and currying
I am always interested in learning new languages, a fact that keeps me on my toes and makes me (I believe) a better programmer. My attempts at conquering Haskell come and go - twice so far - and I ...
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 ...
43
votes
10answers
8k views
Javascript curry - what are the practical applications?
I don't think I've grokked currying yet. I understand what it does, and how to do it. I just can't think of a situation I would use it.
Where are you using currying in javascript (or where are the ...
18
votes
4answers
685 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
6answers
714 views
Why is such a function definition not allowed in haskell?
Shouldn't this definition be allowed in a lazy language like haskell in which functions are curried ?
apply f [] = f
apply f (x:xs) = apply (f x) xs
It's basically a function which applies the ...
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.
14
votes
8answers
891 views
Practical use of curried functions?
There are tons of tutorials on how to curry functions, and as many questions here at stackoverflow. However, after reading The Little Schemer, several books, tutorials, blog posts, and stackoverflow ...
14
votes
5answers
1k views
In functional programming what is “currying”?
Writing as an unreconstructed imperative & OO programmer...
Have messed about with Erlang and also Haskell lately. I like Erlang, not sure yet about Haskell. Functional seems more like math than ...
13
votes
3answers
494 views
Applying an argument list to curried function using foldLeft in Scala
Is it possible to do a foldLeft on a list of arguments, where the initial value supplied to the fold is a fully curried function, the operator is apply, and the list is a list of arguments to be ...
13
votes
5answers
2k views
F# curried function
Anyone have a decent example, preferably practical/useful, they could post demonstrating the concept?
12
votes
2answers
287 views
Usefulness (as in practical applications) of Currying v.s. Partial Application in Scala
I'm trying to understand the advantages of currying over partial applications in Scala. Please consider the following code:
def sum(f: Int => Int): (Int, Int) => Int = {
def sumF(a: Int, ...
12
votes
4answers
417 views
Currying with Mathematica
One may implement a limited form of Currying in Mathematica, using this construct:
f[a_][b_][c_] := (a^2 + b^2)/c^2
Allowing one to do, for example:
f[4][3] /@ Range@5
{25, 25/4, 25/9, 25/16, ...
12
votes
2answers
201 views
Does .Net support curried generics?
Suppose we have a nested generic class:
public class A<T> {
public class B<U> { }
}
Here, typeof(A<int>.B<>) is in essence a generic class with two parameters where only ...
12
votes
2answers
913 views
Is there a way to do currying in C?
Say I have a pointer to a function _stack_push(stack* stk, void* el). I want to be able to call curry(_stack_push, my_stack) and get back a function that just takes void* el. I couldn't think of a way ...
11
votes
3answers
379 views
Is it possible to “curry” higher-kinded types in Scala?
Let's suppose I have a trait with two type parameters, e.g.
trait Qux[A, B]
and another trait with a higher-kinded type parameter, e.g.
trait Turkle[C[_]]
I'd like to be able to substitute a ...
10
votes
3answers
383 views
Does Haskell have variadic functions/tuples?
The uncurry function only works for functions taking two arguments:
uncurry :: (a -> b -> c) -> (a, b) -> c
If I want to uncurry functions with an arbitrary number of arguments, I could ...
10
votes
2answers
265 views
Scala, currying and overloading
Say you have the following:
foo(x: String)(y: Int): Int
foo(x: String)(y: Double): Int
Scala does not allow such expression. As far as I can see, the reason for this is that foo("asdf") does not ...
10
votes
3answers
737 views
Two ways of currying in scala; what's the use-case for each?
Having a discussion around this page in the Scala Style Guide I maintain. I've come to realize that there are two ways of "currying" and I'm wondering what the use cases are:
def add(a:Int)(b:Int) = ...
10
votes
11answers
791 views
“int -> int -> int” What does this mean in F#?
I wonder what this means in F#.
“a function taking an integer, which returns a function which takes an integer and returns an integer.”
But I don't understand this well.
Can anyone explain this so ...
10
votes
6answers
3k views
How can currying be done in C++?
What is currying?
How currying can be done in c++?
Please Explain binders in STL container?
9
votes
2answers
115 views
How are functions curried?
I understand what the concept of currying is, and know how to use it. These are not my questions, rather I am curious as to how this is actually implemented at some lower level than, say, Haskell ...
9
votes
3answers
233 views
Case classes, pattern matching and curried constructors in Scala
They don't seem to mix that well:
abstract class A
case class B (var a: Int)(var b: String) extends A
case class C extends A
The following will not work:
B(1)("1") match {
case B(a)(b) => ...
9
votes
2answers
789 views
High order functions in Clojure
Clojure is awesome, we all know this, but that's not the point.
I'm wondering which is the idiomatic way of creating and managing high-order functions in a Haskell-like way. In Clojure I can do:
...
8
votes
5answers
179 views
What is the point of multiple parameter clauses in function definitions in Scala?
I'm trying to understand the point of this language feature of multiple parameter clauses and why you would use it.
Eg, what's the difference between these two functions really?
class WTF {
def ...
8
votes
2answers
290 views
Function composition in Haskell with tuple arguments
Sometimes I have two functions of the form:
f :: a -> (b1,b2)
h :: b1 -> b2 -> c
and I need the composition g. I solve this by changing h to h':
h' :: (b1,b2) -> c
Can you please ...
8
votes
3answers
271 views
Rework for loop over STL container to use functional techniques
I have a std::vector of pointers Person objects, which have a member function std::string getName() const. Using STL algorithms I want to count all the Person objects in the vector where getName() ...
8
votes
2answers
398 views
Scala: curried constructors
I have the following Scala class:
class Person(var name : String, var age : Int, var email : String)
I would like to use the Person constructor as a curried function:
def mkPerson = (n : String) ...
8
votes
4answers
311 views
Currying out of order in Haskell
Is there an elegant notation for Currying the arguments of a function out of order in Haskell?
For example, if you wish to divide 2 by all elements of a list, you can write
map ((/) 2) [1,2,3,4,5]
...
8
votes
3answers
815 views
What is the advantage of Currying in C#? (achieving partial function)
What is the advantage of Currying in C#?
What is the advantage of achieving partial function application on a curried function?
8
votes
1answer
840 views
How to curry a function in Scala
I'm trying to call a 2 parameters function in List.foreach, with the first parameter fixed for a loop. In fact I want to curry a function of two parameters into a function of one parameter which ...
8
votes
3answers
3k views
Proper Currying in C#
Given a method DoSomething that takes a (parameterless) function and handles it in some way. Is there a better way to create the "overloads" for functions with parameters than the snippet below?
...
7
votes
4answers
251 views
How does currying work?
I'm very new to Haskell and FP in general. I've read many of the writings that describe what currying is, but I haven't found an explanation to how it actually works.
Here is a function: (+) :: a ...
7
votes
3answers
267 views
Reverse currying?
I'd like to compose functions in a certain way. Please consider these 2 functions in pseudocode (not F#)
F1 = x + y
F2 = F1 * 10 // note I did not specify arguments for F1, 'reverse curry' for lack ...
7
votes
2answers
137 views
Weird stuff with curried function
I have this weird situation that I don't understand. I'm reading "Programming in Scala" book, Ch. 9.
Let's say I have a curried function:
def withThis(n:Int)(op:Int=>Unit){
...
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
2answers
417 views
In Python, partial function application (currying) versus explicit function definition
In Python, is it considered better style to:
explicitly define useful functions in terms of more general, possibly internal use, functions; or,
use partial function application to explicitly ...
7
votes
1answer
304 views
Partial function application prematurely runs codeblock when used with underscore
Given:
def save(f: => Any)(run:Boolean) { if (run) { println("running f"); f } else println("not running f") }
I can call it with:
save("test")(true) -> running f
save("test")(false) -> ...
7
votes
2answers
375 views
Why is currying and uncurrying not implicit in scala
If I have a function:
f : A => B => C
I can define an implicit conversion such that this can be used where a function (A, B) => C is expected. This goes in the other direction also.
Why ...
7
votes
3answers
255 views
How do I get (a, b) => c from a => b => c in Scala?
If I have:
val f : A => B => C
This is shorthand for:
val f : Function1[A, Function1[B, C]]
How do I get a function g with the signature:
val g : (A, B) => C = error("todo")
(i.e.)
...
7
votes
2answers
191 views
Is there a programming language that performs currying when named parameters are omitted?
Many functional programming languages have support for curried parameters.
To support currying functions the parameters to the function are essentially a tuple where the last parameter can be omitted ...
7
votes
4answers
228 views
Make this syntax possible: var a = add(2)(3); //5
Make this syntax possible:
var a = add(2)(3); //5
I got this question at
http://dmitry.baranovskiy.com/post/31797647
Got no clue. Confused.... Know the answer...
6
votes
3answers
340 views
C# Linq vs. Currying
I am playing a little bit with functional programming and the various concepts of it. All this stuff is very interesting. Several times I have read about Currying and what an advantage it has.
But I ...
6
votes
4answers
278 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)
...
6
votes
3answers
216 views
Scala Functional Literals with Implicits
Forgive me if this has already been asked elsewhere. I have a Scala syntax question involving function-values and implicit parameters.
I'm comfortable using implicits with Scala's currying ...
6
votes
3answers
262 views
6
votes
3answers
439 views
CPS in curried languages
How does CPS in curried languages like lambda calculus or Ocaml even make sense? Technically, all function have one argument. So say we have a CPS version of addition in one such language:
cps-add k ...
6
votes
4answers
296 views
Need help understanding lambda (currying)
i am reading Accelerated C# i don't really understand the following code:
public static Func<TArg1, TResult> Bind2nd<TArg1, TArg2, TResult> (
this Func<TArg1, TArg2, TResult> ...
6
votes
1answer
217 views
Is it possible in F# to curry a middle function argument?
Here's code that works fine:
let f x y z = x + y + z
let g x y = f x y
let h x z = z |> f x
So I can write expression "h 1", and FSI displays:
val it : (int -> int -> int) = ...