UNPKG

@rimbu/stream

Version:

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

23 lines (18 loc) 677 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 * from './fast-iterator.mts'; export * from './fast-iterable.mts'; export * from './streamable.mts'; export * from './stream-source.mts'; export * from './stream.mts'; export * from './reducer.mts'; export * from './transformer.mts'; export * from '@rimbu/stream/async';