let<R> method

R let<R>(
  1. R block(
    1. T it
    )
)

Implementation

R let<R>(final R Function(T it) block) => block(this);