@rimbu/hashed
Version:
Immutable HashMap and HashSet implementations for TypeScript
16 lines (14 loc) • 569 B
text/typescript
/**
* @packageDocumentation
*
* The `@rimbu/hashed` package provides implementations of the `HashSet` and `HashMap`.<br/>
* <br/>
* See the [Rimbu docs Map page](/docs/collections/map) and [Rimbu docs Set page](/docs/collections/set) for more information.
* <br/>
* This is a convenience package that exports everything from the following sub-packages:<br/>
* - [`@rimbu/hashed/map`](./hashed/map)<br/>
* - [`@rimbu/hashed/set`](./hashed/set)<br/>
*/
export * from '../common/index.mjs';
export * from '@rimbu/hashed/map';
export * from '@rimbu/hashed/set';