@rimbu/sorted
Version:
Immutable SortedMap and SortedSet implementations for TypeScript
14 lines (12 loc) • 427 B
text/typescript
/**
* @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';