vote up 5 vote down star
2

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?

public static TResult DoSomething<TResult>(Func<TResult> func)
{
    //call func() and do something else
}

public static TResult DoSomething<T0, TResult>(
    Func<T0, TResult> func,
    T0 arg0)
{
    return DoSomething(() => func(arg0));
}

public static TResult DoSomething<T0, T1, TResult>(
    Func<T0, T1, TResult> func,
    T0 arg0, T1 arg1)
{
    return DoSomething(arg => func(arg, arg1), arg0);
}

public static TResult DoSomething<T0, T1, T2, TResult>(
    Func<T0, T1, T2, TResult> func,
    T0 arg0, T1 arg1, T2 arg2)
{
    return DoSomething(arg => func(arg, arg1, arg2), arg0);
}
flag

50% accept rate

4 Answers

vote up 4 vote down check

Well, it's not particularly different - but I'd separate out the currying part from the "calling DoSomething" part:

public static Func<TResult> Curry<TResult, TArg> (Func<TArg, TResult> func, TArg arg)
{
    return () => func(arg);
}

public static Func<TResult> Curry<TResult, TArg1, TArg2> (Func<TArg1, TArg2, TResult> func,
                                                          TArg1 arg1, TArg2 arg2)
{
    return () => func(arg1, arg2);
}

// etc

Then:

DoSomething(Curry(foo, 1));

That way you can reuse the currying code in other situations - including cases where you don't want to call the newly-returned delegate immediately. (You might want to curry it more later on, for example.)

link|flag
Why do you return Func<TResult> instead of Func<TResult, Func<Targ1, Targ2>> ? – Paco Jan 4 '09 at 20:17
Because Func<TResult> is what you want to be able to pass into DoSomething. The idea is that the Curry method should take a function which takes some parameters, as well as values for those parameters, and return a function which takes fewer parameters (0 in this case). – Jon Skeet Jan 4 '09 at 20:26
I thought the idea was that a Func<TResult, TArg1, Targ2> was should be converted to a function with less parameters Func<TResult, Func<Targ1, TArg2>>. You can create a default dosomething with a lot of parameters and curried variants – Paco Jan 4 '09 at 20:34
...with lesser parameters – Paco Jan 4 '09 at 20:34
But Func<TResult, Func<TArg1, TArg2>> is a function which takes a TResult and returns a Func<TArg1, TArg2>. Yes, you want to reduce the number of parameters - but by supplying the values, not by dealing with functions to convert from one argument type to another. – Jon Skeet Jan 4 '09 at 20:38
show 11 more comments
vote up 1 vote down

Did you check this blog post? http://mikehadlow.blogspot.com/2008/03/currying-in-c-with-oliver-sturm.html

link|flag
vote up 1 vote down

Here are a couple posts that might be interesting if you're trying to curry in C#:

http://blogs.msdn.com/wesdyer/archive/2007/01/29/currying-and-partial-function-application.aspx

http://diditwith.net/2007/10/23/BuildingFunctionsFromFunctionsPart2FunctionComposition.aspx

link|flag
vote up 1 vote down

I find the notion of currying very interesting, but ultimately not very useful. I'm probably 1/3 way there to groking currying, but still need a little push!

Could somebody post an example of C# currying which actually solves a practical problem?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.