(v float64)
| 261 | } |
| 262 | |
| 263 | func (w *compactWriter) WriteFloat64(v float64) error { |
| 264 | return w.binary.WriteFloat64(v) |
| 265 | } |
| 266 | |
| 267 | func (w *compactWriter) WriteBytes(v []byte) error { |
| 268 | if err := w.WriteLength(len(v)); err != nil { |
nothing calls this directly
no test coverage detected