Logo

Programming-Idioms

  • Java

Idiom #37 Currying

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

import java.util.function.*;
IntBinaryOperator simpleAdd = (a, b) -> a + b;
IntFunction<IntUnaryOperator> curriedAdd = a -> b -> a + b;
System.out.println(simpleAdd.applyAsInt(4, 5));
System.out.println(curriedAdd.apply(4).applyAsInt(5));
(def add5 (partial + 5))

New implementation...
< >
Adrian