Skip to main content

package @rimbu/sorted/set-custom

The @rimbu/sorted/set-custom entry exposes creators, builders, contexts and internal implementations for SortedSet, allowing you to configure custom comparators and tree characteristics for ordered sets. Reach for this entry only when you need to tune sorted set internals; for everyday use the main @rimbu/sorted and @rimbu/sorted/set APIs are recommended.

Interfaces

NameDescription
SortedSetCreatorsundocumented

Classes

NameDescription
SortedSetBuilderundocumented
SortedSetContextundocumented
SortedSetEmptyundocumented
SortedSetInnerundocumented
SortedSetLeafundocumented
SortedSetNodeundocumented

Functions

createSortedSetContext

undocumented

Definition

export declare function createSortedSetContext<UT>(options?: {
  comp?: Comp<UT>;
  blockSizeBits?: number;
}): SortedSet.Context<UT>;

Type parameters
NameDescription
UT

Parameters

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