also method

T also(
  1. void operation(
    1. 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;
}