(v byte)
| 61 | } |
| 62 | |
| 63 | func (enc *ByteEncoder) WriteByte(v byte) { |
| 64 | enc.data[enc.at] = v |
| 65 | enc.at++ |
| 66 | } |
| 67 | |
| 68 | func (enc *ByteEncoder) WriteUint32(v uint32) { |
| 69 | binary.LittleEndian.PutUint32(enc.data[enc.at:], v) |
no outgoing calls
no test coverage detected