also method
T
also(
- dynamic func(
- T
Kotlin-esque "operator" to execute func
on this
, but returning this
.
Implementation
T also(Function(T) func) {
func(this);
return this;
}
Kotlin-esque "operator" to execute func
on this
, but returning this
.
T also(Function(T) func) {
func(this);
return this;
}