Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Java

Idiom #35 First-class function : compose

Implement a function compose (A -> C) with parameters f (A -> B) and g (B -> C), which returns the composition function g ∘ f

import java.util.function.Function;
Function<Integer, Integer> addOne = i-> i + 1;
Function<Integer, String> toString = i-> i.toString();
Function<Integer, String> printIncremented = toString.compose(addOne);
public Function<A, C> compose(Function<A, B> f, Function<B, C> g) {
   return x -> g.apply(f.apply(x));
}

Functional interfaces have a built-in a instance method andThen() that composes the argument with the receiver.
import java.util.function.Function;
<A, B, C> Function<A, C> compose(Function<A, B> f, Function<B, C> g) {
    return f.andThen(g);
}
(defn compose [f g]
   (comp g f))

New implementation...
< >
programming-idioms.org