(f float32)
| 82 | } |
| 83 | |
| 84 | func (e *Encoder) writeFloat(f float32) error { |
| 85 | return e.writeInt(int32(math.Float32bits(f))) |
| 86 | } |
| 87 | |
| 88 | func (e *Encoder) writeDouble(d float64) error { |
| 89 | return e.writeLong(int64(math.Float64bits(d))) |
no test coverage detected