compose<A> method

Func1<A, C> compose<A>(
  1. Func1<A, B> f
)

Performs right-to-left function composition

Implementation

Func1<A, C> compose<A>(Func1<A, B> f) => (A a) => this(f(a));