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

-6
votes
0answers
41 views

Interactive way to learn javascript? [closed]

Hi! My choices are design primary and frontend secondary, same order applies to experience. Seeing that js as the prefect glue between them and underlying so many web apps. Even in advanced Ai* ...
19
votes
3answers
192 views

Haskell: `Map (a,b) c` versus `Map a (Map b c)`?

Thinking of maps as representations of finite functions, a map of two or more variables can be given either in curried or uncurried form; that is, the types Map (a,b) c and Map a (Map b c) are ...
6
votes
2answers
63 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 ...
4
votes
4answers
181 views

Currying Functions Erlang

I'm trying to redo all of my Haskell homework problems using Erlang, and one thing that gets me is how to use a list of functions that don't have all of their parameters. Example: I'm trying to use ...
1
vote
2answers
52 views

Currying functions in Scheme using macros

I'm learning about the macro system in Scheme and I thought implementing curried functions would be a good start. This is what I cooked up: (define-syntax function (syntax-rules () ((_ () ...
1
vote
1answer
172 views

Write a “curried version” of a lambda expression

I'm studying Haskell and am trying to understand how to applying the concept of currying to functions. I understand the currying is essentially a means of taking a function with several arguments and ...
2
votes
1answer
64 views

Problems with covariant parameters last in curried method

This is starting to be a pretty common situation for me: trait CoVariant[+T] { def bar: T } def curried[T](x: String)(y: CoVariant[T]) = y // Not really, but for simplicity val applied = ...
10
votes
3answers
210 views

What does uncurry ($) do?

I'm doing some excersises where I have to add a function's type and explain what it does. I'm stuck with this: phy = uncurry ($) The type, according to GHCi is phy :: (a -> b, a) -> b. My ...
0
votes
0answers
97 views

Explanation of currying in simple terms [duplicate]

I'm currently learning about Haskell and have come across something called currying and curried values. I have also found that (+) is a curried version of + + :: (Integer, Integer) -> Integer (+) ...
0
votes
1answer
52 views

When to split arguments when defining curried function

All these functions do the same thing: def h0(f: Int => Int)(g: Int => Int)(x: Int) = f(g(x)) def h1(f: Int => Int, g: Int => Int)(x: Int) = f(g(x)) def h2(f: Int => Int)(g: Int => ...
3
votes
3answers
48 views

JavaScript function currying does not work on instance method

I am learning function currying in JavaScript by reading online and writing some simple code. I got following example in online article function toArray(obj) { return ...
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: ...
3
votes
4answers
133 views

Uncurried functions

I'm having trouble understanding curried and uncurried functions. All the sites I Google'd to try to provide me a definition were unclear to me. In one example I found them saying that max 4 5 is ...
1
vote
4answers
91 views

case statements in lambdas

Is it possible to incorporate case statements in a lambda? I'm trying to make a function that recursively adds two numbers recursively in Erlang with no luck. Mult = fun(X) -> (fun(Y) -> case ...
3
votes
1answer
219 views

Why does Scala require partial application of curried fuctions when assigning to a val?

In Scala, why is it that a curried function can easily be passed directly to other functions, but when assigning it to a val one needs to also partially apply it with _? For example, given the two ...
2
votes
2answers
93 views

Difference between similarly parenthesized function types

I'm really stuck with functions types in Haskell. There are the types of two functions given and I cannot explain what's the real difference between those. a :: Int -> (Int -> (Int -> (Int ...
10
votes
2answers
273 views

Memoizing multiplication

My application multiplies vectors after a (costly) conversion using an FFT. As a result, when I write f :: (Num a) => a -> [a] -> [a] f c xs = map (c*) xs I only want to compute the FFT ...
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 ...
3
votes
2answers
81 views

Is this considered a curried function?

I'm still a bit confused about currying - I've got an implementation of map in SML, is this considered as a curried function? fun mymap f xs = List.foldr (fn (x, l) => (f x)::l) [] xs; Or do I ...
0
votes
1answer
99 views

Scala: Typed Method that returns a subType

I'm trying to write a function that returns a partially applied function which returns a subType of a particular abstract class. I have an abstract class abstract class IsoBoxReader I have a ...
2
votes
4answers
135 views

scala currying/partials to build function filter list

Given the following code: case class Config( addThree: Boolean = true, halve: Boolean = true, timesFive: Boolean = true ) def doOps(num: Integer, config: Config): Integer = { var result: ...
0
votes
1answer
82 views

uncurry and curry functions [closed]

I´m quite new to lambda-calculus and I´m trying to do the following exercise, but I´m not able to resolve it. uncurry(curry E) = E Could anyone help me?
1
vote
1answer
50 views

How to get the map function to not return something?

In sml nj, if you use the map function, your basically saying for each element x in a list, apply the function f on it, and return the list of the new values, but lets say f returns a string, and in f ...
1
vote
1answer
90 views

How to iterate through lists?

I am trying to learn standard ml of new jersey, but I don't understand how to iterate though lists. I am trying to create a function that takes a value and a list of functions, and returns another ...
0
votes
1answer
81 views

Handling anonymous functions in SML datatypes

I have the following datatype and 3 examples of tests: datatype 'a test = Test of ('a -> bool) * string; val pos = Test (fn x => x > 0, "pos"); val even = Test (fn x => x mod 2 = 0, ...
1
vote
3answers
107 views

Proc#curry and the splat operator: Currying with arbitrary number of arguments

Ruby 1.9's built in support of currying supports two ways to deal with a proc taking an arbitrary number of arguments: my_proc = proc {|*x| x.max } 1) curry without arguments: my_proc.curry. You ...
0
votes
2answers
114 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: ...
1
vote
3answers
105 views

Currying in Lisp: difference between (list 1 2 3) and (1 2 3)?

Is there any difference between (list f 1 2) and (f 1 2)? If yes, then is (f 1 2) equivalent to ((f 1) 2) (currying)? If yes, then is (a b) mean "add b to the end of list a"? If yes, then what ...
-1
votes
1answer
116 views

SML currying ( functional prog)?

I asked this question a few days ago but now I have more understanding on the subject. But I still get problem that operator and operand dont agree: Using ListPair.foldr I need to create a function ...
0
votes
1answer
226 views

Using ListPair.foldr to implement zipWith in SML

Background: Beginner level at SML My assignment requires me to use ListPair.foldr and only this function to implement the zipWith function. ListPair.foldr : ('a * 'b * 'c -> 'c) -> 'c -> 'a ...
0
votes
0answers
93 views

SML type of function (currying)?

Using ListPair.foldr I need to create a function zipWith that combines pairwise two lists. The type of the overall function should be: zipWith : ('a * 'b -> 'c) -> 'a list -> 'b list -> ...
4
votes
1answer
120 views

Groovy closures with automatic currying

I'm just getting started with Groovy, coming from a background of Haskell, C++ and a bit of Java. Lets say I write a closure like the following: def mult = { x, y -> x * y } Later on I can ...
0
votes
1answer
45 views

apply arguments to function

I would like to apply arguments represented as a hash to a function. For example, I would like to call this function: myFunc = function(a,b,c) { return b } In a way similiar to this: myFunc({a:1, ...
2
votes
1answer
77 views

Gaussian functions and currying in Scheme

I am currently trying to learn Scheme to run FDTD simulations and I am having trouble building a Gaussian function in 2 dimensions. In a forum I found this possibility for 1D: (define ( (gaussx ...
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 ...
1
vote
1answer
74 views

Currying Javascript function with custom order of fixed parameters

Currying functions can be usefull: function tag(name, value) { return '<' + name + '>' + value + '</' + name + '>'; } var strong = tag.bind(undefined, "strong"); strong("text"); // ...
7
votes
2answers
491 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 ...
-3
votes
1answer
72 views

Function that returns a function? [closed]

Q: Write a function make_cylinder_volume_func(r) which expects a number r to represent the radius of a cylinder. The function call make_cylinder_volume_func(r) should return a function which takes a ...
2
votes
3answers
119 views

What does the use of multiple lambdas in scheme mean?

I am currently learning scheme and I came across these functions: (define t (lambda (x) (lambda (y) x))) (define f (lambda (x) (lambda (y) y))) Apparently they are representations of true and ...
1
vote
1answer
84 views

General enrichment providing “uncurried” in scala

Does there exist a general enrichment for f: A => B => ... => Z in scala/scalaz/shapeless/etc. such that f.uncurried:(A, B, ...) => Z? Currently I have this, but I believe there must be a ...
1
vote
2answers
292 views

Implementing a higher order function that performs currying in scala

A coworker of mine sent me a question as follows: Implement a HOF(higher order function) that performs currying, the signature of your function is as follows: def curry[A,B,C](f:(A,B) => C) ...
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 ...
0
votes
3answers
96 views

Haskell Beginner: Currying/List Associativity

From Learn You a Haskell: Think about this list: [5]. That’s just syntactic sugar for 5:[]. On the left side of the :, there’s a value; on the right side, there’s a list. In this case, it’s an ...
3
votes
2answers
172 views

Currying a function n times in Scheme

I'm having trouble figuring out a way to curry a function a specified number of times. That is, I give the function a natural number n and a function fun, and it curries the function n times. For ...
1
vote
1answer
86 views

Array of curried functions not acting properly

I'm relatively new to C#, so if the answer to this question is obvious I apologise. There's a portion of a program I am writing that stores an array of structs, and one of the elements of the struct ...
3
votes
2answers
132 views

Why doesn't functools.partial return a real function (and how to create one that does)?

So I was playing around with currying functions in Python and one of the things that I noticed was that functools.partial returns a partial object rather than an actual function. One of the things ...
0
votes
1answer
83 views

What is a function composition algorithm that will work for multiple arguments, such as h(x,y) . f(x) . g(x) = h(f(x),g(x))?

For example, suppose we had the functions double(x)=2*x, square(x)=x^2 and sum(x,y)=x+y. What is a function compose such as compose(compose(sum,square),double) = x^2 + 2*x? Notice that I'm asking a ...
3
votes
1answer
91 views

Ruby Reverse Currying: Is this possible?

Concerning currying in Ruby 1.9.x, I've been using it in some places, and can be translated like basically supporting default parameters to the proc arguments: p = proc {|x, y, z|x + y + z} ...
1
vote
5answers
139 views

Currying using python with-statement?

I am not sure if this is 'good python practice', but would it be possible to, say, define a custom File-object that could do something like: myfile = myopen('myfile.txt') with myfile: ...
8
votes
3answers
183 views

What is the difference between these functions

Are these functions exactly same? That is, are 1st and 2nd syntax just convenient shorthand for the last syntax? Or is there some theoretical or practical difference, and if so, what is it? let f1 a ...

1 2 3 4 5