FixedSizeIndexedCollection<T> Interface

    Package: @esfx/collection-core
    Declaration
    export interface FixedSizeIndexedCollection<T> extends ReadonlyIndexedCollection<T> 
    Inheritance
    ReadonlyIndexedCollection<T>
    FixedSizeIndexedCollection<T>
    Inherited Members
    [ReadonlyIndexedCollection.getAt](index)
    [ReadonlyIndexedCollection.indexOf](value, fromIndex)

    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
    boolean

    true if the value was set at the provided index, otherwise false.

    Generated by DocFX