also method
T
also(
- void operation(
- T self
Calls the specified function operation
with this
value as its argument and returns this
value.
Implementation
T also(void operation(T self)) {
operation(this);
return this;
}