+str #19782 Transpose a sources sequence (#19795)

This commit is contained in:
Rodolphe BELOUIN 2016-04-22 12:04:28 +02:00 committed by Konrad Malawski
parent fd89f36940
commit 936c97051a
13 changed files with 731 additions and 23 deletions

View file

@ -197,6 +197,22 @@ fromPublisher
^^^^^^^^^^^^^
Integration with Reactive Streams, subscribes to a ``org.reactivestreams.Publisher``.
zipN
^^^^
Combine the elements of multiple streams into a stream of sequences.
**emits** when all of the inputs has an element available
**completes** when any upstream completes
zipWithN
^^^^^^^^
Combine the elements of multiple streams into a stream of sequences using a combiner function.
**emits** when all of the inputs has an element available
**completes** when any upstream completes

View file

@ -186,6 +186,22 @@ fromPublisher
^^^^^^^^^^^^^
Integration with Reactive Streams, subscribes to a ``org.reactivestreams.Publisher``.
zipN
^^^^
Combine the elements of multiple streams into a stream of sequences.
**emits** when all of the inputs has an element available
**completes** when any upstream completes
zipWithN
^^^^^^^^
Combine the elements of multiple streams into a stream of sequences using a combiner function.
**emits** when all of the inputs has an element available
**completes** when any upstream completes