Int32 appends i as a int32 to the array.
(i int32)
| 170 | |
| 171 | // Int32 appends i as a int32 to the array. |
| 172 | func (a *Array) Int32(i int32) *Array { |
| 173 | a.buf = enc.AppendInt32(enc.AppendArrayDelim(a.buf), i) |
| 174 | return a |
| 175 | } |
| 176 | |
| 177 | // Int64 appends i as a int64 to the array. |
| 178 | func (a *Array) Int64(i int64) *Array { |
nothing calls this directly
no test coverage detected