SortedDictionary Interface
Signature
export interface SortedDictionary<TKey, TData> extends Dictionary<TKey, TData>
Extends: Dictionary
Type Parameters
| Parameter | Description |
|---|---|
| TKey | |
| TData |
Methods
| Method | Return Type | Description |
|---|---|---|
| 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
| Parameter | Description |
|---|---|
| TAccum |
Parameters
| Parameter | Modifiers | Type | Description |
|---|---|---|---|
| action | PropertyAction<TKey, TData> | ||
| accum | optional | TAccum | |
| start | optional | TKey | |
| end | optional | TKey |
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