()
| 62 | } |
| 63 | |
| 64 | func (r *compactReader) ReadFloat64() (float64, error) { |
| 65 | return r.binary.ReadFloat64() |
| 66 | } |
| 67 | |
| 68 | func (r *compactReader) ReadBytes() ([]byte, error) { |
| 69 | n, err := r.ReadLength() |
nothing calls this directly
no test coverage detected