also method

T also(
  1. AlsoInvokableFunction<T> f
)

Implementation

T also(AlsoInvokableFunction<T> f) {
  f(this);
  return this;
}