inspect method

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

Calls the provided closure with a reference to the contained value

Implementation

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