U16 stores a uint16.
(v uint16)
| 113 | |
| 114 | // U16 stores a uint16. |
| 115 | func (e *Encoder) U16(v uint16) { |
| 116 | e.alignAndOffset(e.m.I16) |
| 117 | e.w.Uint16(v) |
| 118 | } |
| 119 | |
| 120 | // U32 stores a uint32. |
| 121 | func (e *Encoder) U32(v uint32) { |
nothing calls this directly
no test coverage detected