(i int32)
| 60 | } |
| 61 | |
| 62 | func (e *Encoder) writeInt(i int32) error { |
| 63 | return e.writeBytes( |
| 64 | byte(i>>24), |
| 65 | byte(i>>16), |
| 66 | byte(i>>8), |
| 67 | byte(i), |
| 68 | ) |
| 69 | } |
| 70 | |
| 71 | func (e *Encoder) writeLong(l int64) error { |
| 72 | return e.writeBytes( |
no test coverage detected