Skip to main content
Version: v1

SortedDictionary Interface

Signature

export interface SortedDictionary<TKey, TData> extends Dictionary<TKey, TData>

Extends: Dictionary

Type Parameters

ParameterDescription
TKey
TData

Methods

MethodReturn TypeDescription
mapRange(action, accum, start, end)void
max()Property<TKey, TData> | undefined
min()Property<TKey, TData> | undefined

Method Details

mapRange

Signature

mapRange<TAccum>(action: PropertyAction<TKey, TData>, accum?: TAccum, start?: TKey, end?: TKey): void;
Type Parameters
ParameterDescription
TAccum

Parameters

ParameterModifiersTypeDescription
actionPropertyAction<TKey, TData>
accumoptionalTAccum
startoptionalTKey
endoptionalTKey

max

Signature

max(): Property<TKey, TData> | undefined;

Returns

Return type: Property<TKey, TData> | undefined

min

Signature

min(): Property<TKey, TData> | undefined;

Returns

Return type: Property<TKey, TData> | undefined