AppendInt32 appends an int32 to the slice
(b []byte, i int32)
| 144 | |
| 145 | // AppendInt32 appends an int32 to the slice |
| 146 | func AppendInt32(b []byte, i int32) []byte { return AppendInt64(b, int64(i)) } |
| 147 | |
| 148 | // AppendUint64 appends a uint64 to the slice |
| 149 | func AppendUint64(b []byte, u uint64) []byte { |
searching dependent graphs…