@rimbu/stream
Version:
Efficient structure representing a sequence of elements, with powerful operations for TypeScript
23 lines (18 loc) • 677 B
text/typescript
/**
* @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.mjs';
export * from './fast-iterable.mjs';
export * from './streamable.mjs';
export * from './stream-source.mjs';
export * from './stream.mjs';
export * from './reducer.mjs';
export * from './transformer.mjs';
export * from '@rimbu/stream/async';