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