let<R> method

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

Implementation

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