run<R> method

R run<R>(
  1. R block(
    1. T
    )
)

Implementation

R run<R>(R Function(T) block) {
  return block(this);
}