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