Contents

Publishers.Merge3

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

Declaration

struct Merge3<A, B, C> where A : Publisher, B : Publisher, C : Publisher, A.Failure == B.Failure, A.Output == B.Output, B.Failure == C.Failure, B.Output == C.Output

Topics

Creating a merge-three publisher

Merging elements

Declaring supporting types

Inspecting publisher properties

Comparing publishers

Default Implementations

See Also

Combining elements from multiple publishers