@rimbu/sorted
Version:
Immutable SortedMap and SortedSet implementations for TypeScript
16 lines • 621 B
JavaScript
;
/**
* @packageDocumentation
*
* The `@rimbu/sorted/common` entry point contains low-level building blocks
* shared by the `SortedMap` and `SortedSet` implementations.<br/>
* <br/>
* It exposes utilities for working with index-encoded tree positions
* (see `SortedIndex`) as well as internal node and builder helpers used
* by the sorted collections.
*/
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
tslib_1.__exportStar(require("./sorted-index.cjs"), exports);
tslib_1.__exportStar(require("./base.cjs"), exports);
//# sourceMappingURL=index.cjs.map