let<R> method

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

Implementation

R let<R>(R block(T self)){
  return block(this);
}