WriteNil writes a nil byte to the buffer
()
| 347 | |
| 348 | // WriteNil writes a nil byte to the buffer |
| 349 | func (mw *Writer) WriteNil() error { |
| 350 | return mw.push(mnil) |
| 351 | } |
| 352 | |
| 353 | // WriteFloat writes a float to the writer as either float64 |
| 354 | // or float32 when it represents the exact same value |