also method

T also(
  1. void operation(
    1. T it
    )
)

做了某个操作后还返回本身啊

Implementation

T also(void Function(T it) operation) {
  operation(this);
  return this;
}