AppendUint appends a uint to the slice
(b []byte, u uint)
| 176 | |
| 177 | // AppendUint appends a uint to the slice |
| 178 | func AppendUint(b []byte, u uint) []byte { return AppendUint64(b, uint64(u)) } |
| 179 | |
| 180 | // AppendUint8 appends a uint8 to the slice |
| 181 | func AppendUint8(b []byte, u uint8) []byte { return AppendUint64(b, uint64(u)) } |
searching dependent graphs…