Writes a byte without any possibility of all that field header nonsense. Used internally by other writing methods that know they need to write a byte.
(b byte)
| 750 | // Writes a byte without any possibility of all that field header nonsense. |
| 751 | // Used internally by other writing methods that know they need to write a byte. |
| 752 | func (p *TCompactProtocol) writeByteDirect(b byte) error { |
| 753 | return p.trans.WriteByte(b) |
| 754 | } |
| 755 | |
| 756 | // |
| 757 | // Internal reading methods |
no test coverage detected