ReadFloat64 reads a float64 and sets error on bounds violation
(err *Error)
| 398 | |
| 399 | // ReadFloat64 reads a float64 and sets error on bounds violation |
| 400 | func (b *ByteBuffer) ReadFloat64(err *Error) float64 { |
| 401 | return Float64frombits(b.ReadUint64(err)) |
| 402 | } |
| 403 | |
| 404 | func (b *ByteBuffer) Read(p []byte) (n int, err error) { |
| 405 | if len(p) == 0 { |
no test coverage detected