dot<A> method

C Function(A) dot<A>(
  1. B f(
    1. A a
    )
)

Composes two functions following the rules of mathematical function composition.

Implementation

C Function(A) dot<A>(B Function(A a) f) => (a) => this(f(a));