()
| 118 | return r |
| 119 | } |
| 120 | func (b *Buffer) ReadFloat64() float64 { |
| 121 | return math.Float64frombits(b.ReadUint64()) |
| 122 | } |
| 123 | func (b *Buffer) ReadUint64() uint64 { |
| 124 | return binary.BigEndian.Uint64(b.ReadN(8)) |
| 125 | } |
nothing calls this directly
no test coverage detected