@rimbu/hashed
Version:
Immutable HashMap and HashSet implementations for TypeScript
20 lines • 955 B
JavaScript
;
/**
* @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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
// pure interfaces
tslib_1.__exportStar(require("./interface.cjs"), exports);
// pure classes and files
tslib_1.__exportStar(require("./implementation/immutable.cjs"), exports);
tslib_1.__exportStar(require("./implementation/builder.cjs"), exports);
// circular dependencies
tslib_1.__exportStar(require("./implementation/context.cjs"), exports);
//# sourceMappingURL=index.cjs.map