(buf *ByteBuffer, value []int32, typeID TypeId)
| 591 | } |
| 592 | |
| 593 | func writeInt32ListValues(buf *ByteBuffer, value []int32, typeID TypeId) { |
| 594 | if typeID == INT32 { |
| 595 | writeInt32FixedListValues(buf, value) |
| 596 | return |
| 597 | } |
| 598 | for _, v := range value { |
| 599 | buf.WriteVarint32(v) |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | func writeInt32FixedListValues(buf *ByteBuffer, value []int32) { |
| 604 | size := len(value) * 4 |
no test coverage detected