AppendInt appends an int to the slice
(b []byte, i int)
| 135 | |
| 136 | // AppendInt appends an int to the slice |
| 137 | func AppendInt(b []byte, i int) []byte { return AppendInt64(b, int64(i)) } |
| 138 | |
| 139 | // AppendInt8 appends an int8 to the slice |
| 140 | func AppendInt8(b []byte, i int8) []byte { return AppendInt64(b, int64(i)) } |
searching dependent graphs…