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

learn more… | top users | synonyms

8
votes
2answers
858 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
465 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
3answers
649 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 ...
8
votes
1answer
828 views

What are the practical advantages of currying?

I see a lot of documentation and questions about what the currying technique is, but I have found very little information on why one would use it in practice. My question is, what are the advantages ...
8
votes
2answers
253 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 ...
8
votes
1answer
254 views

Curried case class constructor on companion

When defining a case class, the default companion object has nice curried method to get a curried version of the case class constructor: scala> case class Foo(a: String, b: Int) defined class Foo ...
7
votes
3answers
3k views

Two ways of defining functions in Scala. What is the difference?

Here is a little Scala session that defines and tries out some functions: scala> def test1(str: String) = str + str; test1: (str: String)java.lang.String scala> test1("ab") res0: ...
7
votes
4answers
280 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...
7
votes
4answers
438 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> ...
7
votes
1answer
1k views

Confusion about currying and point free style in Haskell

I was trying to implement the function every :: (a -> IO Bool) -> [a] -> IO Bool which was the topic for this question. I tried to do this without explicit recursion. I came up with the ...
7
votes
3answers
288 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
522 views

F# currying efficiency?

I have a function that looks as follows: let isInSet setElems normalize p = normalize p |> (Set.ofList setElems).Contains This function can be used to quickly check whether an element ...
7
votes
2answers
495 views

Scala currying vs partially applied functions

Sorry for the newbie question. I realize that there are several questions on here about what currying and partially applied functions are, but I'm asking about how they are different. As a simple ...
7
votes
2answers
200 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
128 views

Why can't I curry one of the patterns (but not the other) in my pattern matching?

I have I have a function with two arguments that I have to pattern match over. If I use currying on the first pattern it won't compile: drop' :: Int -> [a] -> [a] drop' 0 = id -- ghci: ...
7
votes
3answers
438 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
4k views

JavaScript curry function

I have implemented a curry function this way: function curry (fn) { var slice = Array.prototype.slice, args = slice.apply(arguments, [1]); return function () { fn.apply(null, ...
7
votes
2answers
253 views

C++ Function bind repeating arguments to curried function

I am trying to understand the concept of currying and calling a function which concats three strings but by passing only two strings and using the second argument twice. However when I do this, the ...
7
votes
1answer
319 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) = ...
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?
7
votes
4answers
289 views

Is currying just a way to avoid inheritance?

So my understanding of currying (based on SO questions) is that it lets you partially set parameters of a function and return a "truncated" function as a result. If you have a big hairy function ...
7
votes
2answers
438 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) -> ...
6
votes
7answers
547 views

What are the benefits of currying?

I don't think I quite understand currying, since I'm unable to see any massive benefit it could provide. Perhaps someone could enlighten me with an example demonstrating why it is so useful. Does it ...
6
votes
3answers
717 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
3answers
701 views

qt slots currying

Is there a way curry qt slot? Maybe there is something similar to curryng?
6
votes
1answer
388 views

How do I create a partial function with generics in scala?

I'm trying to write a performance measurements library for Scala. My idea is to transparently 'mark' sections so that the execution time can be collected. Unfortunately I wasn't able to bend the ...
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) ...
6
votes
1answer
97 views

Creating curryable functions with lambdas in D doesn't work as class\struct memebers

I've been playing around with D, trying to mimic Scala style curryable functions by chaining lambda expressions. I came up with this: immutable foo=function(immutable int x)=>(immutable int ...
6
votes
2answers
345 views

Abusing generics to implement a curried composition function in Java

So, after playing around with Java generics a bit, to get a deeper understanding of their capabilities, I decided to try to implement the curried version of the composition function, familiar to ...
6
votes
2answers
64 views

Partially applying a function that has an implicit parameter

Can I turn a method which takes an implicit parameter into a function? trait Tx def foo(bar: Any)(implicit tx: Tx) {} foo _ // error: could not find implicit value for parameter tx: Tx I am ...
6
votes
3answers
699 views

Why can't I implicitly cast a Delegate with Extension methods?

I'm trying to figure out a way to automatically cast something to an Action or Func and the best I can come up with is something like this: [TestFixture] public class ExecutionTest { public void ...
6
votes
3answers
132 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 ...
6
votes
4answers
249 views

Confirming Greenspun's 10th Law in C#

I am trying to implement an infrastructure in C# that would allow me to make arbitrary mathematical expressions. For example, I want to be able to take an expression like asin(sqrt(z - sin(x+y)^2)) ...
5
votes
3answers
211 views

How to map a list of functions over multiple arguments in Haskell?

I have three functions (getRow,getColumn,getBlock) with two arguments (x and y) that each produce a list of the same type. I want to write a fourth function that concatenates their outputs: ...
5
votes
2answers
487 views

Feed elements of a tuple to a function as arguments in Haskell?

In my Haskell program, I want to use printf to format a list of tuples. I can map printf over a list to print out the values one at a time like this: mapM_ (printf "Value: %d\n") [1,2,3,4] Value: 1 ...
5
votes
3answers
423 views

How can I check if function is a partial?

Is there a possibility to check if something is a partial function in Clojure? It would be best to have something like (partial? (partial + 10)) ? Thanks in advance
5
votes
3answers
315 views

Is it possible to curry the other way around in Scala?

Let's assume this function: def autoClosing(f: {def close();})(t: =>Unit) = { t f.close() } and this snippet: val a = autoClosing(new X)(_) a { println("before close") } is it ...
5
votes
1answer
339 views

Default parameters with currying

I can define a function as: def print(n:Int, s:String = "blah") {} print: (n: Int,s: String)Unit I can call it with: print(5) print(5, "testing") If I curry the above: def ...
5
votes
3answers
163 views

Was point free functions able to inline?

let inline myfunction x y = ... let inline mycurried = myfunction x // error, only functions may be marked inline It seems impossible to explicitly inline curried functions. So whenever mycurried ...
5
votes
1answer
237 views

How to curry a function w.r.t. its optional arguments in OCaml

Suppose a function bind has a labelled argument, optional arguments and unlabelled arguments, and you want to define a method m that applies the unlabelled arguments of bind and returns the partially ...
5
votes
1answer
104 views

lambda calculus: passing two values to a single parameter without currying

I cannot understand why the following beta reduction is permitted in untyped lambda calculus: (λx.x y) (u v) -> ((u v) y) Specifically I cannot understand how one can pass two parameters u and v ...
5
votes
3answers
1k views

Scala - Currying and default arguments

I have a function with two parameter lists that I am trying to partially apply and use with currying. The second parameter list contains arguments that all have default values (but not implicit). ...
5
votes
2answers
309 views

Challenge: Neater way of currying or partially applying C#4's string.Join

Background I recently read that .NET 4's System.String class has a new overload of the Join method. This new overload takes a separator, and an IEnumerable<T> which allows arbitrary collections ...
5
votes
2answers
229 views

Currying and multiple integrals

I am interested in learning an elegant way to use currying in a functional programming language to numerically evaluate multiple integrals. My language of choice is F#. If I want to integrate ...
5
votes
1answer
378 views

What is the differences and possible similarities of closures and currying?

I've read through some of the post on here about closures and currying but I feel like I didn't find the answer. So what's the differences and possibly the similarities of closures and currying? ...
5
votes
1answer
194 views

Can you curry a function with varargs in scala?

I was thinking about how to go about currying a method with varargs, and I realized that I don't even have an intuition for how one would go about doing it. Ideally, it would be something that would ...
5
votes
2answers
328 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) _ ...
5
votes
1answer
298 views

Implicit currying in Scheme with syntax-rules?

Jeffrey Meunier has an implicit Curry macro here, which uses defmacro. I was wondering if someone has ever written this with syntax-rules?
5
votes
1answer
246 views

Boost Lambda/Phoenix - how to do lambda which returns another lambda?

Does Boost Lambda/Phoenix supports out of box something like lambda which returns another lambda? For instance, that can be used to do some kind of currying: std::cout << [](int x){return ...
5
votes
1answer
232 views

currying of 'flexible types' in F#

Small part of a code to highlight the problem: open System.IO let do_smth i (stm : #System.IO.Stream) = // val do_smth : 'a -> #Stream -> unit (*....*) () type SomeOps = SomeOps with ...