@hackage text-stream-decode0.1.0.5
Streaming decoding functions for UTF encodings. (deprecated)
Deprecated
Dependencies (3)
- base >=4.4 && <5
- bytestring >=0.9
- text >=0.11 && <1.1 Show all…
Dependents (5)
@hackage/acme-everything, @hackage/pipes-text, @hackage/streaming-commons, @hackage/conduit, @hackage/yesod-platform
Package Flags
text11
(off by default)
Use text version 1.1, which exports many encoding modules.
The text
package provides high performance functions for decoding strict and lazy ByteString
s into Text
. However, these functions present two issues for streaming data libraries: they throw exceptions from pure code, and are not designed for incremental consumption. This library addresses both issues with a unified API for UTF-8, -16LE, -16BE, -32LE, and -32BE. It is intended for use by high level streaming data libraries, such as conduit, enumerator, iteratee, and pipes.