You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 16, 2020. It is now read-only.
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
}
Merging multiple signals means you end up with a "lops sided" tuple. Is there a better way to merge multiple signals?