WriteInt64 writes an int64.
(val int64)
| 154 | |
| 155 | // WriteInt64 writes an int64. |
| 156 | func (rw *WireRW) WriteInt64(val int64) *WireRW { |
| 157 | rw.WriteUint64(uint64(val)) |
| 158 | return rw |
| 159 | } |
| 160 | |
| 161 | // WriteUint8 writes a uint8. |
| 162 | func (rw *WireRW) WriteUint8(val uint8) *WireRW { |
no test coverage detected