Logo

Programming-Idioms

  • Dart
  • Pascal

Idiom #37 Currying

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

curry(f(a, b), a) => (b) => f(a, b);

Simple currying of binary funtion.
(def add5 (partial + 5))

New implementation...
< >
Adrian