(v time.Duration)
| 53 | } |
| 54 | |
| 55 | func (t *bufferArrayEncoder) AppendDuration(v time.Duration) { |
| 56 | t.AppendString(v.String()) |
| 57 | } |
| 58 | |
| 59 | func (t *bufferArrayEncoder) AppendFloat64(v float64) { t.buffer.AppendFloat(v, 64) } |
| 60 | func (t *bufferArrayEncoder) AppendFloat32(v float32) { t.buffer.AppendFloat(float64(v), 32) } |
nothing calls this directly
no test coverage detected