AppendUint32 appends a uint32 to the slice
(b []byte, u uint32)
| 188 | |
| 189 | // AppendUint32 appends a uint32 to the slice |
| 190 | func AppendUint32(b []byte, u uint32) []byte { return AppendUint64(b, uint64(u)) } |
| 191 | |
| 192 | // AppendBytes appends bytes to the slice as MessagePack 'bin' data |
| 193 | func AppendBytes(b []byte, bts []byte) []byte { |
searching dependent graphs…