(key string, val complex64)
| 127 | } |
| 128 | |
| 129 | func (enc *jsonEncoder) AddComplex64(key string, val complex64) { |
| 130 | enc.addKey(key) |
| 131 | enc.AppendComplex64(val) |
| 132 | } |
| 133 | |
| 134 | func (enc *jsonEncoder) AddDuration(key string, val time.Duration) { |
| 135 | enc.addKey(key) |
nothing calls this directly
no test coverage detected