Contents

Publishers.Merge5

A publisher created by applying the merge function to five upstream publishers.

Declaration

struct Merge5<A, B, C, D, E> where A : Publisher, B : Publisher, C : Publisher, D : Publisher, E : Publisher, A.Failure == B.Failure, A.Output == B.Output, B.Failure == C.Failure, B.Output == C.Output, C.Failure == D.Failure, C.Output == D.Output, D.Failure == E.Failure, D.Output == E.Output

Topics

Creating a merge-five publisher

Merging elements

Declaring supporting types

Inspecting publisher properties

Comparing publishers

Default Implementations

See Also

Combining elements from multiple publishers