WriteInt16 writes an int16 to the writer
(i int16)
| 408 | |
| 409 | // WriteInt16 writes an int16 to the writer |
| 410 | func (mw *Writer) WriteInt16(i int16) error { return mw.WriteInt64(int64(i)) } |
| 411 | |
| 412 | // WriteInt32 writes an int32 to the writer |
| 413 | func (mw *Writer) WriteInt32(i int32) error { return mw.WriteInt64(int64(i)) } |