thenMapEach<R> method

ValueStream<Iterable<Future<R>>> thenMapEach<R>(
  1. R mapper(
    1. X input
    )
)

Implementation

ValueStream<Iterable<Future<R>>> thenMapEach<R>(R mapper(X input)) {
  return this.mapEach((future) => future.then(mapper));
}