This repository has been archived on 2023-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
mightyscape-1.1-deprecated/extensions/fablabchemnitz/papercraft/openjscad/node_modules/@most/multicast
2020-09-10 14:36:01 +02:00
..
dist Added option for labels/no labels (Papercraft Unfold) 2020-09-10 14:36:01 +02:00
src Added option for labels/no labels (Papercraft Unfold) 2020-09-10 14:36:01 +02:00
type-definitions Added option for labels/no labels (Papercraft Unfold) 2020-09-10 14:36:01 +02:00
LICENSE Added option for labels/no labels (Papercraft Unfold) 2020-09-10 14:36:01 +02:00
package.json Added option for labels/no labels (Papercraft Unfold) 2020-09-10 14:36:01 +02:00
README.md Added option for labels/no labels (Papercraft Unfold) 2020-09-10 14:36:01 +02:00

⚠️ Deprecated ⚠️

@most/multicast is deprecated.

Support and maintenance will cease when @most/core 1.0 is released. Meanwhile, only critical bug fixes will be released.

Its functionality is currently available in @most/core and will also be available in most 2.0.

@most/multicast

Efficient source sharing of an underlying stream to multiple observers.

API

multicast :: Stream a → Stream a

Returns a stream equivalent to the original, but which can be shared more efficiently among multiple consumers.

stream:             -a-b-c-d->
multicast(stream):  -a-b-c-d->

Using multicast allows you to build up a stream of maps, filters, and other transformations, and then share it efficiently with multiple observers.