()
| 53 | } |
| 54 | |
| 55 | func (r *compactReader) ReadInt32() (int32, error) { |
| 56 | v, err := r.readVarint("int32", math.MinInt32, math.MaxInt32) |
| 57 | return int32(v), err |
| 58 | } |
| 59 | |
| 60 | func (r *compactReader) ReadInt64() (int64, error) { |
| 61 | return r.readVarint("int64", math.MinInt64, math.MaxInt64) |
nothing calls this directly
no test coverage detected