(data []byte, i int32)
| 24 | } |
| 25 | |
| 26 | func AppendInt(data []byte, i int32) []byte { |
| 27 | return append(data, byte(i>>24), byte(i>>16), byte(i>>8), byte(i)) |
| 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)) |
nothing calls this directly
no outgoing calls
no test coverage detected