BSD-3-Clause licensed by Doug Beardsley
Maintained by [email protected]
This version can be pinned in stack with:readable-0.3.1@sha256:48e15b61329a09a0b1e6b4a4b7d3e2745e13761ea67bc8dfdc750dd35814b6e7,915

Module documentation for 0.3.1

Depends on 3 packages(full list with versions):
Used by 2 packages in lts-8.5(full list with versions):

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.

Changes

0.4

  • Reinstate Text and ByteString instances because some users require them.

0.3.0.1

  • Add yes/no and y/n parsing to the Bool instance

0.3

  • Remove Readable instances for ByteString and Text because they are probably not what the user wants and could cause compilation to succeed when you probably want to see an error.

0.2.0.2

  • Fix fromBS for ByteString so it is a correct passthrough instead of doing encodeUtf8 . decodeUtf8 under the hood.

0.2.0.1

  • Use decodeUtf8’ so that we can catch character encoding exceptions and return mzero instead of generating an exception.