let<R> method

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

Implementation

R let<R>(R Function(T) f) {
  return f(this as T);
}