WriteFloat64 writes a float64 to the writer
(f float64)
| 362 | |
| 363 | // WriteFloat64 writes a float64 to the writer |
| 364 | func (mw *Writer) WriteFloat64(f float64) error { |
| 365 | return mw.prefix64(mfloat64, math.Float64bits(f)) |
| 366 | } |
| 367 | |
| 368 | // WriteFloat32 writes a float32 to the writer |
| 369 | func (mw *Writer) WriteFloat32(f float32) error { |