pipe<R> method

R pipe<R>(
  1. R f(
    1. T value
    )
)

Implementation

R pipe<R>(R Function(T value) f) => f(this);