iter method

Iterable<T> iter()

Returns an iterable over the possibly contained value.

Implementation

Iterable<T> iter() => isSome ? [_someValue] : const [];