()
| 24 | } |
| 25 | |
| 26 | public int32(): number { |
| 27 | const result = this.buffer.readInt32BE(this.offset) |
| 28 | this.offset += 4 |
| 29 | return result |
| 30 | } |
| 31 | |
| 32 | public uint32(): number { |
| 33 | const result = this.buffer.readUInt32BE(this.offset) |
no outgoing calls
no test coverage detected