@rimbu/hashed
Version:
Immutable HashMap and HashSet implementations for TypeScript
14 lines (13 loc) • 638 B
text/typescript
/**
* @packageDocumentation
*
* The `@rimbu/hashed/map-custom` entry exposes the internal interfaces, builders and
* contexts behind `HashMap`, allowing you to define custom hash‑map variants that plug
* in specific hashers, equality comparers or block configurations.<br/>
* Use it only when you need low‑level control over hashed map internals; for everyday
* hash‑map usage the main `@rimbu/hashed` and `@rimbu/hashed/map` APIs are recommended.
*/
export * from './interface.mjs';
export * from './implementation/immutable.mjs';
export * from './implementation/builder.mjs';
export * from './implementation/context.mjs';