let<R> method

R let<R>(
  1. R task(
    1. T data
    )
)

Implementation

R let<R>(R Function(T data) task){
  return task(this);
}