Str appends the val as a string to the array.
(val string)
| 81 | |
| 82 | // Str appends the val as a string to the array. |
| 83 | func (a *Array) Str(val string) *Array { |
| 84 | a.buf = enc.AppendString(enc.AppendArrayDelim(a.buf), val) |
| 85 | return a |
| 86 | } |
| 87 | |
| 88 | // Bytes appends the val as a string to the array. |
| 89 | func (a *Array) Bytes(val []byte) *Array { |
no test coverage detected