Logo

Programming-Idioms

  • Dart
  • Scala

Idiom #37 Currying

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

def add(x: Int)(y: Int) = x + y
val add5 = add(5)_

With multiple parameter lists. (add5 takes the 1 parameter of the other parameter list)
def add(x: Int, y: Int) = x + y
def add5 = add(5, _)
val seven = add5(2)
curry(f(a, b), a) => (b) => f(a, b);

Simple currying of binary funtion.
(def rev-key #(update %2 %1 reverse))

(def rev-a (partial rev-key :a))

New implementation...
< >
Adrian