UNPKG

@rimbu/stream

Version:

Efficient structure representing a sequence of elements, with powerful operations for TypeScript

21 lines (17 loc) 659 B
/** * @packageDocumentation * * The `@rimbu/stream` package provides the `Stream` and `AsyncStream` implementations and many related utilities.<br/> * <br/> * See the [Rimbu docs Stream page](/docs/collections/stream) for more information.<br/> * <br/> * This package also exports everything from the the following sub-packages:<br/> * - [`@rimbu/stream/async`](./stream/async)<br/> */ export type * from './fast-iterator.mjs'; export type * from './fast-iterable.mjs'; export type * from './streamable.mjs'; export type * from './stream-source.mjs'; export * from './stream.mjs'; export * from './reducer.mjs'; export * from './transformer.mjs';