I64 stores a int64.
(v int64)
| 101 | |
| 102 | // I64 stores a int64. |
| 103 | func (e *Encoder) I64(v int64) { |
| 104 | e.alignAndOffset(e.m.I64) |
| 105 | e.w.Int64(v) |
| 106 | } |
| 107 | |
| 108 | // U8 stores a uint8. |
| 109 | func (e *Encoder) U8(v uint8) { |
nothing calls this directly
no test coverage detected