UNPKG

@rimbu/sorted

Version:

Immutable SortedMap and SortedSet implementations for TypeScript

13 lines (12 loc) 426 B
/** * @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.cjs'; export * from './base.cjs';