Interface MutableNumberArray

A type wider than number[], omitting any instance functions unused by the API, e.g., map, sort. This allows the math functions to operate on a wider range of array-like values.

interface MutableNumberArray {
    length: number;
    [n: number]: number;
}

Indexable

[n: number]: number

Properties

Properties

length: number