U8 stores a uint8.
(v uint8)
| 107 | |
| 108 | // U8 stores a uint8. |
| 109 | func (e *Encoder) U8(v uint8) { |
| 110 | e.alignAndOffset(e.m.I8) |
| 111 | e.w.Uint8(v) |
| 112 | } |
| 113 | |
| 114 | // U16 stores a uint16. |
| 115 | func (e *Encoder) U16(v uint16) { |
nothing calls this directly
no test coverage detected