(value uint32)
| 226 | } |
| 227 | |
| 228 | func (b *ByteBuffer) WriteUint32(value uint32) { |
| 229 | b.grow(4) |
| 230 | binary.LittleEndian.PutUint32(b.data[b.writerIndex:], value) |
| 231 | b.writerIndex += 4 |
| 232 | } |
| 233 | |
| 234 | func (b *ByteBuffer) WriteInt32(value int32) { |
| 235 | b.grow(4) |
no test coverage detected