pipeFunc<T, U> function

U pipeFunc<T, U>(
  1. Func0<T> f1,
  2. Func1<T, U> f2
)

Implementation

U pipeFunc<T, U>(final Func0<T> f1, final Func1<T, U> f2) => f2(f1());