read-bounded: Class for reading bounded values

[ bsd3, library, text ] [ Propose Tags ]

Class for reading bounded values.


[Skip to Readme]

Modules

[Last Documentation]

  • Text
    • Read
      • Text.Read.Bounded

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.1.0, 0.1.1.1, 0.1.1.2, 0.1.1.3
Dependencies base (>=4.13.0.0 && <4.14) [details]
License BSD-3-Clause
Author Thomas Eding
Maintainer Thomas Eding
Category Text
Home page https://github.com/thomaseding/read-bounded
Bug tracker https://github.com/thomaseding/read-bounded/issues
Uploaded by ThomasEding at 2020-09-11T19:10:19Z
Distributions
Reverse Dependencies 2 direct, 0 indirect [details]
Downloads 2803 total (17 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2020-09-11 [all 2 reports]

Readme for read-bounded-0.1.1.3

[back to package description]

read-bounded

Library for reading in values that have bounded representations.

> readBounded "1" :: BoundedRead Word8
ExactRead 1
> readBounded "1000" :: BoundedRead Word8
ClampedRead 255
> readBounded "" :: BoundedRead Word8
NoRead