readable: Reading from Text and ByteString

[ bsd3, library, text ] [ Propose Tags ]

Provides a Readable type class for reading data types from ByteString and Text.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.1.0.1, 0.1.0.2, 0.2, 0.2.0.1, 0.2.0.2, 0.3, 0.3.0.1, 0.3.1
Dependencies base (>=4 && <5), bytestring (>=0.9), text (>=0.11) [details]
License BSD-3-Clause
Author Doug Beardsley
Maintainer mightybyte@gmail.com
Category Text
Home page https://github.com/mightybyte/readable
Source repo head: git clone git://github.com/mightybyte/readable.git
Uploaded by DougBeardsley at 2014-01-15T00:16:17Z
Distributions Arch:0.3.1, Debian:0.3.1, Fedora:0.3.1, LTSHaskell:0.3.1, NixOS:0.3.1, Stackage:0.3.1
Reverse Dependencies 13 direct, 255 indirect [details]
Downloads 34089 total (124 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Successful builds reported [all 1 reports]

Readme for readable-0.2

[back to package description]

Readable

The Read type class is very useful for building data types from String representations. But String has high overhead, so sometimes it isn't suitable for applications where space usage and performance are important. This library provides a simpler version of Read's functionality for Text and UTF8 encoded ByteStrings.