whereErr method

Future<Iterable<Err<T>>> whereErr()

Awaits all futures and then filters for Err elements.

Implementation

Future<Iterable<Err<T>>> whereErr() =>
    Future.wait(this).then((e) => e.whereErr());