AppendNil appends a 'nil' byte to the slice
(b []byte)
| 61 | |
| 62 | // AppendNil appends a 'nil' byte to the slice |
| 63 | func AppendNil(b []byte) []byte { return append(b, mnil) } |
| 64 | |
| 65 | // AppendFloat appends a float to the slice as either float64 |
| 66 | // or float32 when it represents the exact same value |
no outgoing calls
searching dependent graphs…