@rimbu/hashed
Version:
Immutable HashMap and HashSet implementations for TypeScript
20 lines • 920 B
JavaScript
;
/**
* @packageDocumentation
*
* The `@rimbu/hashed/set-custom` entry exposes the internal interfaces, builders and
* contexts behind `HashSet`, so you can construct custom hashed set variants that rely
* on tailored hashers, equality logic or internal configuration.<br/>
* For normal hashed set usage prefer the main `@rimbu/hashed` and `@rimbu/hashed/set`
* APIs; this entry targets advanced customization scenarios.
*/
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