Bytes appends the val as a string to the array.
(val []byte)
| 87 | |
| 88 | // Bytes appends the val as a string to the array. |
| 89 | func (a *Array) Bytes(val []byte) *Array { |
| 90 | a.buf = enc.AppendBytes(enc.AppendArrayDelim(a.buf), val) |
| 91 | return a |
| 92 | } |
| 93 | |
| 94 | // Hex appends the val as a hex string to the array. |
| 95 | func (a *Array) Hex(val []byte) *Array { |
nothing calls this directly
no test coverage detected