(key string, val float64)
| 137 | } |
| 138 | |
| 139 | func (enc *jsonEncoder) AddFloat64(key string, val float64) { |
| 140 | enc.addKey(key) |
| 141 | enc.AppendFloat64(val) |
| 142 | } |
| 143 | |
| 144 | func (enc *jsonEncoder) AddFloat32(key string, val float32) { |
| 145 | enc.addKey(key) |
nothing calls this directly
no test coverage detected