also method

T also(
  1. void block(
    1. T self
    )
)

Implementation

T also(void block(T self)) {
  block(this);
  return this;
}