UNPKG

@rimbu/hashed

Version:

Immutable HashMap and HashSet implementations for TypeScript

20 lines (16 loc) 711 B
/** * @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. */ // pure interfaces export * from './interface.mjs'; // pure classes and files export * from './implementation/immutable.mjs'; export * from './implementation/builder.mjs'; // circular dependencies export * from './implementation/context.mjs';