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