I32 stores a int32.
(v int32)
| 95 | |
| 96 | // I32 stores a int32. |
| 97 | func (e *Encoder) I32(v int32) { |
| 98 | e.alignAndOffset(e.m.I32) |
| 99 | e.w.Int32(v) |
| 100 | } |
| 101 | |
| 102 | // I64 stores a int64. |
| 103 | func (e *Encoder) I64(v int64) { |
nothing calls this directly
no test coverage detected