let<R> method

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

Calls the specified function block with this value as its argument and returns its result

Implementation

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