(val []byte)
| 235 | } |
| 236 | |
| 237 | func (enc *jsonEncoder) AppendByteString(val []byte) { |
| 238 | enc.addElementSeparator() |
| 239 | enc.buf.AppendByte('"') |
| 240 | enc.safeAddByteString(val) |
| 241 | enc.buf.AppendByte('"') |
| 242 | } |
| 243 | |
| 244 | // appendComplex appends the encoded form of the provided complex128 value. |
| 245 | // precision specifies the encoding precision for the real and imaginary |
no test coverage detected