()
| 110 | // Read methods | 读取方法 |
| 111 | |
| 112 | public getUint8(): number { |
| 113 | const value = this._data.getUint8(this._position); |
| 114 | this._position += 1; |
| 115 | return value; |
| 116 | } |
| 117 | |
| 118 | public getInt8(): number { |
| 119 | const value = this._data.getInt8(this._position); |
no outgoing calls
no test coverage detected