(buf *ByteBuffer, value []int64, typeID TypeId)
| 689 | } |
| 690 | |
| 691 | func writeInt64ListValues(buf *ByteBuffer, value []int64, typeID TypeId) { |
| 692 | switch typeID { |
| 693 | case INT64: |
| 694 | writeInt64FixedListValues(buf, value) |
| 695 | case TAGGED_INT64: |
| 696 | for _, v := range value { |
| 697 | buf.WriteTaggedInt64(v) |
| 698 | } |
| 699 | default: |
| 700 | for _, v := range value { |
| 701 | buf.WriteVarint64(v) |
| 702 | } |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | func writeInt64FixedListValues(buf *ByteBuffer, value []int64) { |
| 707 | size := len(value) * 8 |
no test coverage detected