| SourceTOut, TMatZipWithNT, TOut2 Method |
Combine the elements of multiple streams into a stream of sequences using a combiner function.
Namespace:
Akka.Streams.Dsl
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public Source<TOut2, NotUsed> ZipWithN<T, TOut2>(
Func<IImmutableList<T>, TOut2> zipper,
IEnumerable<Source<T, NotUsed>> sources
)
member ZipWithN :
zipper : Func<IImmutableList<'T>, 'TOut2> *
sources : IEnumerable<Source<'T, NotUsed>> -> Source<'TOut2, NotUsed>
Parameters
- zipper
- Type: SystemFuncIImmutableListT, TOut2
TBD - sources
- Type: System.Collections.GenericIEnumerableSourceT, NotUsed
TBD
Type Parameters
- T
- TBD
- TOut2
- TBD
Return Value
Type:
SourceTOut2,
NotUsedTBD
See Also