Skip to content
This repository was archived by the owner on Mar 16, 2020. It is now read-only.
This repository was archived by the owner on Mar 16, 2020. It is now read-only.

Multi merge #16

Description

@schwa

Merging multiple signals means you end up with a "lops sided" tuple. Is there a better way to merge multiple signals?

let signal = Signal("Hello")
signal.merge(Signal("world"))
.merge(Signal("how are you?"))
.merge(Signal("42"))
.next() {
    print($0)        // ((("Hello", "world"), "how are you?"), "42")
    print($0.0.0.1)  // world
}

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions