2
0
mirror of https://github.com/esiur/esiur-js.git synced 2025-06-27 15:23:11 +00:00
This commit is contained in:
2020-04-30 10:21:33 +03:00
parent 5967d6c901
commit db78b18f2b
4 changed files with 272 additions and 133 deletions

View File

@ -344,14 +344,14 @@ export default class DC extends Uint8Array
getInt64Array(offset, length)
{
return this.copy(offset, length, 8, this.getInt64, BigInt64Array);
return this.copy(offset, length, 8, this.getInt64, Float64Array);//BigInt64Array);
//return new Int64Array(this.clip(offset, length).buffer);
}
getUint64Array(offset, length)
{
return this.copy(offset, length, 8, this.getUint64, BigUint64Array);
return this.copy(offset, length, 8, this.getUint64, Float64Array);//BigUint64Array);
//return new Uint64Array(this.clip(offset, length).buffer);
}