unwrapAll method

Iterable<T> unwrapAll()

Extracts the value from every Some element in the iterable.

Implementation

Iterable<T> unwrapAll() => map((e) => e.value);