@rimbu/sorted
Version:
Immutable SortedMap and SortedSet implementations for TypeScript
13 lines • 460 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.
*/
export * from './sorted-index.mjs';
export * from './base.mjs';
//# sourceMappingURL=index.mjs.map