(specialCh1 byte, specialCh2 byte)
| 27 | } |
| 28 | |
| 29 | func NewDecoder(specialCh1 byte, specialCh2 byte) *Decoder { |
| 30 | return &Decoder{ |
| 31 | specialChar1: specialCh1, |
| 32 | specialChar2: specialCh2, |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | // Decode |
| 37 | // Accept an encodedBytes byte array, and the encoding method |
no outgoing calls