Int8 appends i as a int8 to the array.
(i int8)
| 158 | |
| 159 | // Int8 appends i as a int8 to the array. |
| 160 | func (a *Array) Int8(i int8) *Array { |
| 161 | a.buf = enc.AppendInt8(enc.AppendArrayDelim(a.buf), i) |
| 162 | return a |
| 163 | } |
| 164 | |
| 165 | // Int16 appends i as a int16 to the array. |
| 166 | func (a *Array) Int16(i int16) *Array { |
nothing calls this directly
no test coverage detected