Logo

Programming-Idioms

  • Pascal
  • Scheme

Idiom #37 Currying

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

(define add5 (curry + 5))
(def add5 (partial + 5))

New implementation...
< >
Adrian