let<R> method
R
let<R>(
- R block(
- T it
Calls the specified block
with the current value as its argument.
Implementation
R let<R>(R Function(T it) block) {
return block(this);
}
Calls the specified block
with the current value as its argument.
R let<R>(R Function(T it) block) {
return block(this);
}