I8 stores a int8.
(v int8)
| 83 | |
| 84 | // I8 stores a int8. |
| 85 | func (e *Encoder) I8(v int8) { |
| 86 | e.alignAndOffset(e.m.I8) |
| 87 | e.w.Int8(v) |
| 88 | } |
| 89 | |
| 90 | // I16 stores a int16. |
| 91 | func (e *Encoder) I16(v int16) { |
nothing calls this directly
no test coverage detected