inspect method

Some<T> inspect(
  1. dynamic f(
    1. T self
    )
)

Implementation

Some<T> inspect(Function(T self) f) {
  f(v);
  return this;
}