(v int64)
| 257 | } |
| 258 | |
| 259 | func (w *compactWriter) WriteInt64(v int64) error { |
| 260 | return w.writeVarint(v) |
| 261 | } |
| 262 | |
| 263 | func (w *compactWriter) WriteFloat64(v float64) error { |
| 264 | return w.binary.WriteFloat64(v) |
nothing calls this directly
no test coverage detected