DecodeBytesAscending decodes a []byte value from the input buffer which was encoded using EncodeBytesAscending. The decoded bytes are appended to r. The remainder of the input buffer and the decoded []byte are returned.
(b []byte, r []byte)
| 557 | // are appended to r. The remainder of the input buffer and the |
| 558 | // decoded []byte are returned. |
| 559 | func DecodeBytesAscending(b []byte, r []byte) ([]byte, []byte, error) { |
| 560 | return decodeBytesInternal(b, r, ascendingEscapes, true) |
| 561 | } |
| 562 | |
| 563 | // DecodeBytesDescending decodes a []byte value from the input buffer |
| 564 | // which was encoded using EncodeBytesDescending. The decoded bytes |
no test coverage detected
searching dependent graphs…