import * as streamObservables from "https://deno.land/x/stream_observables@v1.3/transforms/mod.ts";
Functions
Collects items from the original observable into buffers until the notifier emits. If no items have been buffered since the last time the notifier emitted, nothing will be emitted. Closing the emitter will emit the remaining buffer. | |
Collects items from the original observable into buffers of size | |
Combines items from the original observable with the other observables. See combineLatest. | |
Converts a higher-order Observable into a first-order Observable by concatenating the inner Observables in order. | |
Returns a | |
Returns a | |
Returns a | |
Converts a higher-order Observable into a first-order Observable by dropping inner Observables while the previous inner Observable has not yet completed. | |
Returns a | |
Returns a | |
Calls a function for each item emitted by an observable without waiting for the function to return to forward the item. Exceptions thrown by the function will be caught and ignored. | |
f last | Returns a |
f map | Returns a |
Merges another observable by emitting all items from both the original
observable and the | |
Emits the most recently emitted value from the Observable whenever the notifier emits. If no new value has been emitted from the source observable since the last time the notifier emitted, nothing will be emitted. | |
f scan | Reduces the original observable with |
Returns a | |
Converts a higher-order Observable into a first-order Observable producing values only from the most recent observable sequence. | |
Converts each emitted item to an observable, producing values only from the most recent observable in the sequence. | |
f take | Returns a |
Returns a | |
f tap | Alias for forEach. |
Branches out the source observable as nested observables whenever notifier emits. | |
Zips items from the original observable with the |