Filters for None elements, returning an iterable of the None instances.
Iterable<None<T>> whereNone() => where((e) => e.isNone()).map((e) => e.none().unwrap());