Skip to main content

package @rimbu/sorted/set-custom

undocumented

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;
}