let<R> method

R let<R>(
  1. R f(
    1. T
    )
)

Implementation

R let<R>(final R Function(T) f) => f(this as T);