Int16 appends i as a int16 to the array.
(i int16)
| 164 | |
| 165 | // Int16 appends i as a int16 to the array. |
| 166 | func (a *Array) Int16(i int16) *Array { |
| 167 | a.buf = enc.AppendInt16(enc.AppendArrayDelim(a.buf), i) |
| 168 | return a |
| 169 | } |
| 170 | |
| 171 | // Int32 appends i as a int32 to the array. |
| 172 | func (a *Array) Int32(i int32) *Array { |
nothing calls this directly
no test coverage detected