MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / FastListArray

Class FastListArray

packages/alphatab/src/synth/vorbis/VorbisStreamDecoder.ts:95–103  ·  view source on GitHub ↗

* @internal

Source from the content-addressed store, hash-verified

93 * @internal
94 */
95class 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected