()
| 26 | } |
| 27 | |
| 28 | public byte(): number { |
| 29 | // const result = this.bufferView[this.#offset] |
| 30 | const result = this.#bufferView.getUint8(this.#offset) |
| 31 | this.#offset++ |
| 32 | return result |
| 33 | } |
| 34 | |
| 35 | public int32(): number { |
| 36 | // const result = this.buffer.readInt32BE(this.#offset) |