(key string, val float32)
| 142 | } |
| 143 | |
| 144 | func (enc *jsonEncoder) AddFloat32(key string, val float32) { |
| 145 | enc.addKey(key) |
| 146 | enc.AppendFloat32(val) |
| 147 | } |
| 148 | |
| 149 | func (enc *jsonEncoder) AddInt64(key string, val int64) { |
| 150 | enc.addKey(key) |
nothing calls this directly
no test coverage detected