let<R> method

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

Implementation

R let<R>(R Function(T it) function) {
  return function(this);
}