AppendUint16 appends a uint16 to the slice
(b []byte, u uint16)
| 185 | |
| 186 | // AppendUint16 appends a uint16 to the slice |
| 187 | func AppendUint16(b []byte, u uint16) []byte { return AppendUint64(b, uint64(u)) } |
| 188 | |
| 189 | // AppendUint32 appends a uint32 to the slice |
| 190 | func AppendUint32(b []byte, u uint32) []byte { return AppendUint64(b, uint64(u)) } |
searching dependent graphs…