AppendArrayEnd adds markers to indicate the end of an array.
(dst []byte)
| 36 | |
| 37 | // AppendArrayEnd adds markers to indicate the end of an array. |
| 38 | func (Encoder) AppendArrayEnd(dst []byte) []byte { |
| 39 | return append(dst, majorTypeSimpleAndFloat|additionalTypeBreak) |
| 40 | } |
| 41 | |
| 42 | // AppendArrayDelim adds markers to indicate end of a particular array element. |
| 43 | func (Encoder) AppendArrayDelim(dst []byte) []byte { |
no outgoing calls
no test coverage detected