(key string, val complex128)
| 122 | } |
| 123 | |
| 124 | func (enc *jsonEncoder) AddComplex128(key string, val complex128) { |
| 125 | enc.addKey(key) |
| 126 | enc.AppendComplex128(val) |
| 127 | } |
| 128 | |
| 129 | func (enc *jsonEncoder) AddComplex64(key string, val complex64) { |
| 130 | enc.addKey(key) |
nothing calls this directly
no test coverage detected