Int appends i as a int to the array.
(i int)
| 152 | |
| 153 | // Int appends i as a int to the array. |
| 154 | func (a *Array) Int(i int) *Array { |
| 155 | a.buf = enc.AppendInt(enc.AppendArrayDelim(a.buf), i) |
| 156 | return a |
| 157 | } |
| 158 | |
| 159 | // Int8 appends i as a int8 to the array. |
| 160 | func (a *Array) Int8(i int8) *Array { |
nothing calls this directly
no test coverage detected