()
| 1070 | } |
| 1071 | |
| 1072 | func (d *Decoder) readDouble() (float64, error) { |
| 1073 | i, err := d.readLong() |
| 1074 | return math.Float64frombits(uint64(i)), err |
| 1075 | } |
| 1076 | |
| 1077 | func (d *Decoder) readString() (string, error) { |
| 1078 | l, err := d.readShort() |
no test coverage detected