also<R> method

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

Implementation

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