Char stores an char.
(v Char)
| 131 | |
| 132 | // Char stores an char. |
| 133 | func (e *Encoder) Char(v Char) { |
| 134 | e.alignAndOffset(e.m.Char) |
| 135 | binary.WriteInt(e.w, 8*e.m.Char.Size, int64(v)) |
| 136 | } |
| 137 | |
| 138 | // Int stores an int. |
| 139 | func (e *Encoder) Int(v Int) { |
nothing calls this directly
no test coverage detected