Skip to content
Snippets Groups Projects
Commit c6bbc0a8 authored by Alexander Rose's avatar Alexander Rose
Browse files

use indexable with length prop for Column.copyToArray

parent e706e8a9
No related branches found
No related tags found
No related merge requests found
...@@ -151,15 +151,13 @@ namespace Column { ...@@ -151,15 +151,13 @@ namespace Column {
return arrayColumn({ array: c.toArray({ array }), schema: c.schema, valueKind: c.valueKind }); return arrayColumn({ array: c.toArray({ array }), schema: c.schema, valueKind: c.valueKind });
} }
export function copyToArray<T>(c: Column<T>, array: ArrayLike<T>, offset = 0) { export function copyToArray<T extends number>(c: Column<T>, array: { [k: number]: T, length: number }, offset = 0) {
if (!c.isDefined) return; if (!c.isDefined) return;
const cArray = c['@array'] const cArray = c['@array']
if (cArray) { if (cArray) {
// TODO Index signature of 'ArrayLike<T>' only permits reading for (let i = 0, _i = cArray.length; i < _i; i++) array[offset + i] = cArray[i];
for (let i = 0, _i = cArray.length; i < _i; i++) (array[offset + i] as any) = cArray[i];
} else { } else {
// TODO Index signature of 'ArrayLike<T>' only permits reading for (let i = 0, _i = c.rowCount; i < _i; i++) array[offset + i] = c.value(i);
for (let i = 0, _i = c.rowCount; i < _i; i++) (array[offset + i] as any) = c.value(i);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment