AppendNil inserts a 'Nil' object into the dst byte array.
(dst []byte)
| 9 | |
| 10 | // AppendNil inserts a 'Nil' object into the dst byte array. |
| 11 | func (Encoder) AppendNil(dst []byte) []byte { |
| 12 | return append(dst, majorTypeSimpleAndFloat|additionalTypeNull) |
| 13 | } |
| 14 | |
| 15 | // AppendBeginMarker inserts a map start into the dst byte array. |
| 16 | func (Encoder) AppendBeginMarker(dst []byte) []byte { |