Given three functions:
Function<Double, Double> f = ...
Function<Double, Double> h = ...
Function<Double, Double> g = ...These functions were composed into one function:
Function<Double, Double> composed = f.andThen(g).compose(h);In the math sense, this composition is equivalent to ...