I16 stores a int16.
(v int16)
| 89 | |
| 90 | // I16 stores a int16. |
| 91 | func (e *Encoder) I16(v int16) { |
| 92 | e.alignAndOffset(e.m.I16) |
| 93 | e.w.Int16(v) |
| 94 | } |
| 95 | |
| 96 | // I32 stores a int32. |
| 97 | func (e *Encoder) I32(v int32) { |
nothing calls this directly
no test coverage detected