FixedSizeIndexedCollection<T> Interface
Package: @esfx/collection-core
Declaration
export interface FixedSizeIndexedCollection<T> extends ReadonlyIndexedCollection<T>
Inherited Members
Methods
[FixedSizeIndexedCollection.setAt](index, value)
Sets a value at the specified index in the collection.
Declaration
[FixedSizeIndexedCollection.setAt](index: number, value: T): boolean;
Parameters
- index
- number
- value
- T
Returns
true
if the value was set at the provided index, otherwise false
.