let<R> method

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

Implementation

R? let<R>(R block(T self)) {
  if (this == null) {
    return null;
  } else {
    return block(this!);
  }
}