vote up 1 vote down star
1

I was playing with recursive lambdas in C# and have found two approaches to do this on the web. One approach uses fixed point combinator and the other does not. In the code below f1 is built using combinator, and f2 is defined directly. My question is, do we need fixed point combinators in C# or the language already provides all we need, so we can leave them alone?

class Program
{
    static Func<T, T> F<T>(Func<Func<T,T>,Func<T,T>> f)
    {
        return x => f(F(f))(x);
    }

    static void Main(string[] args)
    {
        Func<Func<int,int>,Func<int,int>> f = fac => x => x == 0 ? 1 : x * fac(x - 1);
        var f1 = F(f);

        Console.WriteLine(f1(5));

        Func<int, int> f2 = null;
        f2 = x => x == 0 ? 1 : x * f2(x - 1);

        Console.WriteLine(f2(5));
    }
}
flag

3 Answers

vote up 3 vote down check

As we can give a name to a method, that means that the language already has the necessary support for recursion built into it.

Note that the second method given in your question involves changing the value of a variable after it has been introduced, making it not "pure" functional programming. Y-combinator is only necessary if your system of functional calculus doesn't have a built-in notion of a function that can refer to its own definition by name before the definition is completely defined. C# has two ways to do that directly: 1. initially defining the function variable as null and 2. declaring an ordinary named method (by far the preferred technique).

link|flag
1  
What about for memoization of recursive functions? – MichaelGG Apr 16 at 23:00
1  
I'd say the resulting ugliness means it is worse than just building memoization into a recursive function by hand (which isn't that hard to make fairly reusable). – Earwicker Apr 17 at 8:52
Well yea, exactly. C# gets ugly real fast if you try to do any of this, so it's all impractical for the most part. – MichaelGG Apr 17 at 19:34
vote up 1 vote down

Another alternative is to declare your recursive Func delegates as static members:

static Func<int, int> Factorial = (n) => n <= 1 ? 1 : n*Factorial(n - 1);
link|flag
vote up 0 vote down

What does "need" mean? C# doesn't need them, as you shouldn't be attempting this sort of functional programming in C#. It's just a pathway to pain.

Memoizing a recursive function is one place you'd want a fixed point combinator. Compare this in C# to Haskell.

So, before C# "needs" this, it has a needs a lot of work to make this sort of programming reasonably practical.

link|flag

Your Answer

Get an OpenID
or

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