AppendArrayStart adds markers to indicate the start of an array.
(dst []byte)
| 31 | |
| 32 | // AppendArrayStart adds markers to indicate the start of an array. |
| 33 | func (Encoder) AppendArrayStart(dst []byte) []byte { |
| 34 | return append(dst, majorTypeArray|additionalTypeInfiniteCount) |
| 35 | } |
| 36 | |
| 37 | // AppendArrayEnd adds markers to indicate the end of an array. |
| 38 | func (Encoder) AppendArrayEnd(dst []byte) []byte { |
no outgoing calls
no test coverage detected