(data []byte, l int64)
| 28 | } |
| 29 | |
| 30 | func AppendLong(data []byte, l int64) []byte { |
| 31 | return append(data, byte(l>>56), byte(l>>48), byte(l>>40), byte(l>>32), byte(l>>24), byte(l>>16), byte(l>>8), byte(l)) |
| 32 | } |
| 33 | |
| 34 | func AppendVarInt(data []byte, value int32) []byte { |
| 35 | ux := uint32(value) |
nothing calls this directly
no outgoing calls
no test coverage detected