s/sync/merge

This commit is contained in:
Leo Horie 2016-07-15 00:35:18 -04:00
parent 5f90bde20f
commit a2680b30a4
3 changed files with 22 additions and 10 deletions

View file

@ -4,6 +4,7 @@
- [Static members](#static-members)
- [prop.combine](#prop-combine)
- [prop.reject](#prop-reject)
- [prop.merge](#prop-merge)
- [prop.HALT](#prop-halt)
- [Instance members](#static-members)
- [stream.run](#stream-run)
@ -85,6 +86,19 @@ Argument | Type | Required | Description
[How to read signatures](signatures.md)
##### prop.merge
Creates a stream whose value is the array of values from an array of streams
`stream = m.prop.merge(streams)`
Argument | Type | Required | Description
------------ | -------------------- | -------- | ---
`streams` | `Array<Stream>` | Yes | A list of streams
**returns** | `Stream` | | Returns a stream whose value is an array of input stream values
[How to read signatures](signatures.md)
##### prop.HALT
A special value that can be returned to stream callbacks to halt execution of downstreams