Skip to main content

package @rimbu/sorted/map-custom

The @rimbu/sorted/map-custom entry exposes creators, builders, contexts and internal implementations for SortedMap, enabling advanced configuration of comparators and tree parameters beyond what the default factories provide. Use it when you need fine‑grained control over sorted map internals; for typical ordered map usage the main @rimbu/sorted and @rimbu/sorted/map APIs are sufficient.

Interfaces

NameDescription
SortedMapCreatorsundocumented

Classes

NameDescription
SortedMapBuilderundocumented
SortedMapContextundocumented
SortedMapEmptyundocumented
SortedMapInnerundocumented
SortedMapLeafundocumented
SortedMapNodeundocumented

Functions

createSortedMapContext

undocumented

Definition

export declare function createSortedMapContext<UK>(options?: {
  comp?: Comp<UK>;
  blockSizeBits?: number;
}): SortedMap.Context<UK>;

Type parameters
NameDescription
UK

Parameters

NameTypeDescription
options{
  comp?: Comp<UK>;
  blockSizeBits?: number;
}