/** * @packageDocumentation * * The `@rimbu/bimultimap/custom` entry exposes the low‑level interfaces, contexts, builders * and implementations behind `BiMultiMap`, enabling advanced users to construct custom * hash‑ or sorted‑based BiMultiMap variants.
* Use this entry when you need to integrate BiMultiMaps with bespoke map or multimap * contexts; for typical many‑to‑many use cases the main `@rimbu/bimultimap` API is preferred. */ export * from './interface/base.cjs'; export * from './interface/generic.cjs'; export * from './interface/hashed.cjs'; export * from './interface/sorted.cjs'; export * from './implementation/immutable.cjs'; export * from './implementation/builder.cjs'; export * from './implementation/context.cjs';