()
| 58 | } |
| 59 | |
| 60 | func (r *compactReader) ReadInt64() (int64, error) { |
| 61 | return r.readVarint("int64", math.MinInt64, math.MaxInt64) |
| 62 | } |
| 63 | |
| 64 | func (r *compactReader) ReadFloat64() (float64, error) { |
| 65 | return r.binary.ReadFloat64() |
nothing calls this directly
no test coverage detected