RawJSON adds already encoded JSON to the array.
(val []byte)
| 99 | |
| 100 | // RawJSON adds already encoded JSON to the array. |
| 101 | func (a *Array) RawJSON(val []byte) *Array { |
| 102 | a.buf = appendJSON(enc.AppendArrayDelim(a.buf), val) |
| 103 | return a |
| 104 | } |
| 105 | |
| 106 | // Err serializes and appends the err to the array. |
| 107 | func (a *Array) Err(err error) *Array { |
nothing calls this directly
no test coverage detected