| 36 | | UTF8 xs -> decodeUTF8 (removeCRLF xs) |
| 37 | | UTF16 LittleEndian xs -> decodeUTF16LE (removeCRLF xs) |
| 38 | | UTF16 BigEndian xs -> decodeUTF16BE (removeCRLF xs) |
| 39 | | UTF32 LittleEndian xs -> decodeUTF32LE (removeCRLF xs) |
| 40 | | UTF32 BigEndian xs -> decodeUTF32BE (removeCRLF xs) |
| | 36 | UTF8 xs -> decodeUTF8 (removeCRLF xs) |
| | 37 | UTF16 LittleEndian xs -> removeCRLF (decodeUTF16LE xs) |
| | 38 | UTF16 BigEndian xs -> removeCRLF (decodeUTF16BE xs) |
| | 39 | UTF32 LittleEndian xs -> removeCRLF (decodeUTF32LE xs) |
| | 40 | UTF32 BigEndian xs -> removeCRLF (decodeUTF32BE xs) |