Popularity
3.6
Declining
Activity
0.0
Stable
1
5
0

Monthly Downloads: 22
Programming language: Haskell
License: MIT License
Tags: Data     Text    
Latest version: v0.1.0

text-stream-decode alternatives and similar packages

Based on the "text" category.
Alternatively, view text-stream-decode alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of text-stream-decode or a related project?

Add another 'text' Package

README

text-stream-decode

Streaming decoding functions for UTF encodings.

Build Status

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.