Bool appends the val as a bool to the array.
(b bool)
| 146 | |
| 147 | // Bool appends the val as a bool to the array. |
| 148 | func (a *Array) Bool(b bool) *Array { |
| 149 | a.buf = enc.AppendBool(enc.AppendArrayDelim(a.buf), b) |
| 150 | return a |
| 151 | } |
| 152 | |
| 153 | // Int appends i as a int to the array. |
| 154 | func (a *Array) Int(i int) *Array { |
nothing calls this directly
no test coverage detected