(v string)
| 64 | func (t *bufferArrayEncoder) AppendInt16(v int16) { t.buffer.AppendInt(int64(v)) } |
| 65 | func (t *bufferArrayEncoder) AppendInt8(v int8) { t.buffer.AppendInt(int64(v)) } |
| 66 | func (t *bufferArrayEncoder) AppendString(v string) { t.buffer.AppendString(v) } |
| 67 | func (t *bufferArrayEncoder) AppendTime(v time.Time) { t.buffer.AppendString(v.String()) } |
| 68 | func (t *bufferArrayEncoder) AppendUint(v uint) { t.buffer.AppendUint(uint64(v)) } |
| 69 | func (t *bufferArrayEncoder) AppendUint64(v uint64) { t.buffer.AppendUint(v) } |
no outgoing calls
no test coverage detected