()
| 121 | return math.Float64frombits(b.ReadUint64()) |
| 122 | } |
| 123 | func (b *Buffer) ReadUint64() uint64 { |
| 124 | return binary.BigEndian.Uint64(b.ReadN(8)) |
| 125 | } |
| 126 | func (b *Buffer) ReadUint32() uint32 { |
| 127 | return binary.BigEndian.Uint32(b.ReadN(4)) |
| 128 | } |
no test coverage detected