UNPKG

@rimbu/hashed

Version:

Immutable HashMap and HashSet implementations for TypeScript

15 lines 602 B
/** * @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'; //# sourceMappingURL=index.mjs.map