Awaits all futures and then filters for Ok elements.
Future<Iterable<Ok<T>>> whereOk() => Future.wait(this).then((e) => e.whereOk());