Filters for None elements, returning an iterable of the None instances.
@pragma('vm:prefer-inline') Iterable<None<T>> whereNone() => where((e) => e.isNone()).map((e) => e.none().unwrap());