(buf *ByteBuffer, value []uint64, typeID TypeId)
| 746 | } |
| 747 | |
| 748 | func writeUint64ListValues(buf *ByteBuffer, value []uint64, typeID TypeId) { |
| 749 | switch typeID { |
| 750 | case UINT64: |
| 751 | writeUint64FixedListValues(buf, value) |
| 752 | case TAGGED_UINT64: |
| 753 | for _, v := range value { |
| 754 | buf.WriteTaggedUint64(v) |
| 755 | } |
| 756 | default: |
| 757 | for _, v := range value { |
| 758 | buf.WriteVarUint64(v) |
| 759 | } |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | func writeUint64FixedListValues(buf *ByteBuffer, value []uint64) { |
| 764 | size := len(value) * 8 |
no test coverage detected