Click or drag to resize
Akka.NETSourceTOut, 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.42 (1.2.3.42)
Syntax
public Source<TOut2, NotUsed> ZipWithN<T, TOut2>(
	Func<IImmutableList<T>, TOut2> zipper,
	IEnumerable<Source<T, NotUsed>> sources
)

Parameters

zipper
Type: SystemFuncIImmutableListT, TOut2
TBD
sources
Type: System.Collections.GenericIEnumerableSourceT, NotUsed
TBD

Type Parameters

T
TBD
TOut2
TBD

Return Value

Type: SourceTOut2, NotUsed
TBD
See Also