(rawCount: number)
| 117 | let defaultDimValueGetters: {[sourceFormat: string]: DimValueGetter}; |
| 118 | |
| 119 | function getIndicesCtor(rawCount: number): DataArrayLikeConstructor { |
| 120 | // The possible max value in this._indicies is always this._rawCount despite of filtering. |
| 121 | return rawCount > 65535 ? CtorUint32Array : CtorUint16Array; |
| 122 | }; |
| 123 | |
| 124 | function cloneChunk(originalChunk: DataValueChunk): DataValueChunk { |
| 125 | const Ctor = originalChunk.constructor; |
no outgoing calls
no test coverage detected
searching dependent graphs…