inspect abstract method

Option<T> inspect(
  1. dynamic f(
    1. T
    )
)

Calls the provided closure with a reference to the contained value

Implementation

Option<T> inspect(Function(T) f);