UNPKG

@rimbu/stream

Version:

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

18 lines (17 loc) 656 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.cjs'; export type * from './fast-iterable.cjs'; export type * from './streamable.cjs'; export type * from './stream-source.cjs'; export * from './stream.cjs'; export * from './reducer.cjs'; export * from './transformer.cjs';