Contents

Publishers.Merge4

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

Declaration

struct Merge4<A, B, C, D> where A : Publisher, B : Publisher, C : Publisher, D : 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

Topics

Creating a merge-four publisher

Merging elements

Declaring supporting types

Inspecting publisher properties

Comparing publishers

Default Implementations

See Also

Combining elements from multiple publishers