(b *buffer, tag int, x int64)
| 108 | } |
| 109 | |
| 110 | func encodeInt64(b *buffer, tag int, x int64) { |
| 111 | u := uint64(x) |
| 112 | encodeUint64(b, tag, u) |
| 113 | } |
| 114 | |
| 115 | func encodeInt64s(b *buffer, tag int, x []int64) { |
| 116 | if len(x) > 2 { |
no test coverage detected
searching dependent graphs…