using System; using System.Linq; public static class Func { // supply 1 argument to function of 2 arguments public static Func Partial(this Func f, A a) { return b => f(a, b); } // supply 1 argument to function of 3 arguments public static Func Partial(this Func f, A a) { return (b, c) => f(a, b, c); } // supply 2 arguments to function of 3 arguments public static Func Partial(this Func f, A a, B b) { return c => f(a, b, c); } // break down function of 2 arguments to require 2 successive 1-argument calls public static Func> Curry(this Func f) { return a => b => f(a, b); } // break down function of 3 arguments to require 2 successive 1-argument calls public static Func>> Curry(this Func f) { return a => b => c => f(a, b, c); } }