AppendBool appends a bool to the underlying buffer.
(v bool)
| 70 | |
| 71 | // AppendBool appends a bool to the underlying buffer. |
| 72 | func (b *Buffer) AppendBool(v bool) { |
| 73 | b.bs = strconv.AppendBool(b.bs, v) |
| 74 | } |
| 75 | |
| 76 | // AppendFloat appends a float to the underlying buffer. It doesn't quote NaN |
| 77 | // or +/- Inf. |
nothing calls this directly
no test coverage detected