WriteInt writes an int to the writer
(i int)
| 414 | |
| 415 | // WriteInt writes an int to the writer |
| 416 | func (mw *Writer) WriteInt(i int) error { return mw.WriteInt64(int64(i)) } |
| 417 | |
| 418 | // WriteUint64 writes a uint64 to the writer |
| 419 | func (mw *Writer) WriteUint64(u uint64) error { |