U64 stores a uint64.
(v uint64)
| 125 | |
| 126 | // U64 stores a uint64. |
| 127 | func (e *Encoder) U64(v uint64) { |
| 128 | e.alignAndOffset(e.m.I64) |
| 129 | e.w.Uint64(v) |
| 130 | } |
| 131 | |
| 132 | // Char stores an char. |
| 133 | func (e *Encoder) Char(v Char) { |
nothing calls this directly
no test coverage detected