From 0d4a15a035b96496f1de6ddf535c2deb5727d6ba Mon Sep 17 00:00:00 2001 From: jtuu Date: Mon, 1 Jun 2020 19:44:45 +0300 Subject: [PATCH] Changed typings of array writing methods in AbstractWritableCursor to be more permissive. The purpose of this change is to allow using TypedArrays with these methods. --- .../cursor/AbstractWritableCursor.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/core/data_formats/cursor/AbstractWritableCursor.ts b/src/core/data_formats/cursor/AbstractWritableCursor.ts index 7803936a..1da4b634 100644 --- a/src/core/data_formats/cursor/AbstractWritableCursor.ts +++ b/src/core/data_formats/cursor/AbstractWritableCursor.ts @@ -48,25 +48,25 @@ export abstract class AbstractWritableCursor extends AbstractCursor implements W return this; } - write_u8_array(array: readonly number[]): this { + write_u8_array(array: ArrayLike): this { this.write_u8_array_at(this.position, array); this._position += array.length; return this; } - write_u16_array(array: readonly number[]): this { + write_u16_array(array: ArrayLike): this { this.write_u16_array_at(this.position, array); this._position += array.length * 2; return this; } - write_u32_array(array: readonly number[]): this { + write_u32_array(array: ArrayLike): this { this.write_u32_array_at(this.position, array); this._position += array.length * 4; return this; } - write_i32_array(array: readonly number[]): this { + write_i32_array(array: ArrayLike): this { this.write_i32_array_at(this.position, array); this._position += array.length * 4; return this; @@ -151,13 +151,13 @@ export abstract class AbstractWritableCursor extends AbstractCursor implements W return this; } - write_u8_array_at(offset: number, array: readonly number[]): this { + write_u8_array_at(offset: number, array: ArrayLike): this { this.ensure_size(array.length, offset); new Uint8Array(this.backing_buffer, this.offset + offset).set(new Uint8Array(array)); return this; } - write_u16_array_at(offset: number, array: readonly number[]): this { + write_u16_array_at(offset: number, array: ArrayLike): this { this.ensure_size(2 * array.length, offset); const len = array.length; @@ -168,7 +168,7 @@ export abstract class AbstractWritableCursor extends AbstractCursor implements W return this; } - write_u32_array_at(offset: number, array: readonly number[]): this { + write_u32_array_at(offset: number, array: ArrayLike): this { this.ensure_size(4 * array.length, offset); const len = array.length; @@ -179,7 +179,7 @@ export abstract class AbstractWritableCursor extends AbstractCursor implements W return this; } - write_i32_array_at(offset: number, array: readonly number[]): this { + write_i32_array_at(offset: number, array: ArrayLike): this { this.ensure_size(4 * array.length, offset); const len = array.length;