1
vote
2answers
85 views
Currying and compiler design
This is a homework question:
Explain the transformations the type
of a routine undergoes in partial
parameterization.
So far I understand currying. But I cannot find any …
1
vote
3answers
60 views
Is it possible to curry method calls in PHP?
I have a SoapClient instance generated for a WSDL file. All except one of the method invocations require the username and the password to be passed id.
Is there any way of curryin …
3
votes
1answer
111 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 p …
1
vote
2answers
77 views
Is there a way to get a Curried form of the binary operators in SML/NJ?
For example, instead of
- op =;
val it = fn : ''a * ''a -> bool
I would rather have
- op =;
val it = fn : ''a -> ''a -> bool
for use in
val x = getX()
val l = getLi …
6
votes
4answers
876 views
How can currying be done in C++?
What is currying?
How currying can be done in c++?
Please Explain binders in STL container?
1
vote
1answer
61 views
Using Curry to Define Grails Tags
I have a grails tag library TpTagLib and in it I want to define 4 new tags that differ only in one constant value, so I tried to use curry.
But there is an exception: groovy.lang.M …
3
votes
5answers
225 views
Functional programming: 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 …
4
votes
4answers
218 views
“Uncurrying” an instance method in .NET
EDIT: Highlight difficulties with virtual and/or value-type methods
Can you create a delegate of an instance method without specifying the instance at creation time? In other wor …
1
vote
3answers
174 views
Doing a N-dimensional walk in pure functional ML ?
The idea is to walk over multiple dimensions, each one defined as a range
(* lower_bound, upper_bound, number_of_steps *)
type range = real * real * int
so functions like fun fo …
1
vote
4answers
305 views
Beginner: Curried functions in Scheme
I'm using the SICP lectures and text to learn about Scheme on my own. I am looking at an exercise that says "An application of an expression E is an expression of the form (E E1,. …
5
votes
2answers
237 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 cou …
2
votes
1answer
122 views
F#: curried overload/tupled overload issue
While migrating some code to the latest version of F#, included in VS2010 b1, I've encountered an issue and I'd like to know if there's a workaround available and - if not - why wa …
6
votes
1answer
173 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 …
1
vote
2answers
113 views
Semantics of F# statement
Can someone describe this F# expression to me?
val augment: GameGrid -> points -> unit
What does the val keyword mean?
Is it true that usually type -> type indicates a …
4
votes
2answers
235 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 ExecutionTes …
