readable: Reading from Text and ByteString

[ bsd3, library, text ] [ Propose Tags ]

Provides a Readable type class for reading data types from ByteString and Text. Also includes efficient implementations for common data types.


[Skip to Readme]

Modules

[Index]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

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
Change log CHANGELOG.md
Dependencies base (>=4 && <5), bytestring (>=0.9 && <0.13), text (>=0.11 && <2.2) [details]
License BSD-3-Clause
Author Doug Beardsley
Maintainer mightybyte@gmail.com
Revised Revision 2 made by AndreasAbel at 2024-01-23T07:54:28Z
Category Text
Home page https://github.com/mightybyte/readable
Source repo head: git clone https://github.com/mightybyte/readable.git
Uploaded by DougBeardsley at 2015-02-07T23:36:46Z
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]
Last success reported on 2015-02-12 [all 1 reports]

Readme for readable-0.3.1

[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.