Logo

Programming-Idioms

  • Pascal
  • VB
  • C#

Idiom #37 Currying

Transform a function that takes multiple arguments into a function for which some of the arguments are preset.

using System;
Func<A, C> curry<A, B, C>(Func<A, B, C> f, B b) => (A a) => f(a, b);

Lambda syntax.
(def add5 (partial + 5))

New implementation...
< >
Adrian