@hackage / text-stream-decode

Streaming decoding functions for UTF encodings. (deprecated)

Version Deprecated package0.1.0.5

About

Metadata

  • Last updated , by HerbertValerioRiedel
  • License MIT
  • Categories Text Processing
  • Maintained by: michael@snoyman.com

  • Lottery factor: 0

Links

Installation

This package has been deprecated in favour of

Package Flags

Use the -f option with cabal commands to enable flags

    text11 (off by default)

    Use text version 1.1, which exports many encoding modules.

Readme

The text package provides high performance functions for decoding strict and lazy ByteStrings 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.