let method

T let(
  1. dynamic fun(
    1. T it
    )
)

任意对象扩展函数 返回本身

Implementation

T let(Function(T it) fun) {
  fun(this);
  return this;
}