@rimbu/core
Version:
Immutable collections and tools for TypeScript
20 lines (19 loc) • 800 B
text/typescript
/**
* Creation "menu" for the Rimbu collections.
*
* @remarks
* This module collects the main Rimbu collection types and exposes them in a
* grouped form that is re-exported as the default from `@rimbu/core/menu`.
* The individual collection types and their methods are documented in their
* respective packages, such as `@rimbu/list`, `@rimbu/stream`, and the
* various map, set, and table packages.
*/
export { List } from '@rimbu/list';
export { Stream } from '@rimbu/stream';
export { AsyncStream } from '@rimbu/stream/async';
export * as BiMultiMap from './bimultimap.cjs';
export * as Graph from './graph/index.cjs';
export * as Map from './map/index.cjs';
export * as MultiSet from './multiset.cjs';
export * as Set from './set/index.cjs';
export * as Table from './table/index.cjs';