* @internal
| 93 | * @internal |
| 94 | */ |
| 95 | class FastListArray implements IFastList { |
| 96 | private _data: Int32Array; |
| 97 | public constructor(data: Int32Array) { |
| 98 | this._data = data; |
| 99 | } |
| 100 | public get(index: number): number { |
| 101 | return this._data[index]; |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * @internal |
nothing calls this directly
no outgoing calls
no test coverage detected