compose<T, M, R> function

R Function(T) compose<T, M, R>(
  1. R f(
    1. M
    ),
  2. M g(
    1. T
    )
)

Implementation

R Function(T) compose<T, M, R>(R Function(M) f, M Function(T) g) =>
    (T x) => f(g(x));