mapAsStream method

Stream<V> mapAsStream(
  1. Future<V> forEach(
    1. V element
    ), [
  2. int parallels = 1
])

Iterable elements with support async and emits each forEach async ends.

Implementation

Stream<V> mapAsStream(Future<V> Function(V element) forEach,
        [int parallels = 1]) =>
    fn.mapAsStream(this, forEach, parallels);