pipe<C> method

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

Implementation

Func1<A, C> pipe<C>(final Func1<B, C> f) => pipe2(this, f);