@param {number} val
(val)
| 351 | |
| 352 | /** @param {number} val */ |
| 353 | writeDouble(val) { |
| 354 | this.realloc(8); |
| 355 | this.dataView.setFloat64(this.pos, val, true); |
| 356 | this.pos += 8; |
| 357 | } |
| 358 | |
| 359 | /** @param {Uint8Array} buffer */ |
| 360 | writeBytes(buffer) { |
no test coverage detected