WriteUint writes a uint to the writer
(u uint)
| 445 | |
| 446 | // WriteUint writes a uint to the writer |
| 447 | func (mw *Writer) WriteUint(u uint) error { return mw.WriteUint64(uint64(u)) } |
| 448 | |
| 449 | // WriteBytes writes binary as 'bin' to the writer |
| 450 | func (mw *Writer) WriteBytes(b []byte) error { |