Function compose

Functional composition.

T delegate(S) compose(T, U, S) (
  T function(U) f,
  U function(S) g
);

Description

Returns a function that applies function f to the return value of function g