U32 stores a uint32.
(v uint32)
| 119 | |
| 120 | // U32 stores a uint32. |
| 121 | func (e *Encoder) U32(v uint32) { |
| 122 | e.alignAndOffset(e.m.I32) |
| 123 | e.w.Uint32(v) |
| 124 | } |
| 125 | |
| 126 | // U64 stores a uint64. |
| 127 | func (e *Encoder) U64(v uint64) { |
nothing calls this directly
no test coverage detected