(d float64)
| 86 | } |
| 87 | |
| 88 | func (e *Encoder) writeDouble(d float64) error { |
| 89 | return e.writeLong(int64(math.Float64bits(d))) |
| 90 | } |
| 91 | |
| 92 | func (e *Encoder) writeIntArray(il []int32) error { |
| 93 | if err := e.writeInt(int32(len(il))); err != nil { |
no test coverage detected