(b1 byte, b2 byte)
| 20 | } |
| 21 | |
| 22 | func (enc *Encoder) writeTwoBytes(b1 byte, b2 byte) { |
| 23 | enc.buf = append(enc.buf, b1, b2) |
| 24 | } |
| 25 | |
| 26 | // WriteByte appends the byte c to b's Buffer. |
| 27 | // The returned error is always nil. |
no outgoing calls
no test coverage detected