ReadInt64 reads an int64 and sets error on bounds violation
(err *Error)
| 388 | |
| 389 | // ReadInt64 reads an int64 and sets error on bounds violation |
| 390 | func (b *ByteBuffer) ReadInt64(err *Error) int64 { |
| 391 | return int64(b.ReadUint64(err)) |
| 392 | } |
| 393 | |
| 394 | // ReadFloat32 reads a float32 and sets error on bounds violation |
| 395 | func (b *ByteBuffer) ReadFloat32(err *Error) float32 { |