ReadInt32 reads an int32 and sets error on bounds violation
(err *Error)
| 383 | |
| 384 | // ReadInt32 reads an int32 and sets error on bounds violation |
| 385 | func (b *ByteBuffer) ReadInt32(err *Error) int32 { |
| 386 | return int32(b.ReadUint32(err)) |
| 387 | } |
| 388 | |
| 389 | // ReadInt64 reads an int64 and sets error on bounds violation |
| 390 | func (b *ByteBuffer) ReadInt64(err *Error) int64 { |