IndexedCollection<T> Interface
Package: @esfx/collection-core
Declaration
export interface IndexedCollection<T> extends FixedSizeIndexedCollection<T>, Collection<T>
Inherited Members
Methods
[IndexedCollection.insertAt](index, value)
Inserts a value at the specified index in the collection, shifting any following elements to the right one position.
Declaration
[IndexedCollection.insertAt](index: number, value: T): void;
Parameters
- index
- number
- value
- T
Returns
void
[IndexedCollection.removeAt](index)
Removes the value at the specified index in the collection, shifting any following elements to the left one position.
Declaration
[IndexedCollection.removeAt](index: number): void;
Parameters
- index
- number
Returns
void