safe-decimal: Safe and very efficient arithmetic operations on fixed decimal point numbers

[ bsd3, library, math, numeric, numerical ] [ Propose Tags ]

Please see the README on GitHub at https://github.com/fpco/safe-decimal#readme


[Skip to Readme]

Modules

[Index] [Quick Jump]

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.0, 0.2.0.0, 0.2.1.0
Change log ChangeLog.md
Dependencies base (>=4.8 && <5), deepseq, exceptions, scientific [details]
License BSD-3-Clause
Copyright 2018-2019 FP Complete
Author Alexey Kuleshevich
Maintainer alexey@fpcomplete.com
Revised Revision 1 made by HerbertValerioRiedel at 2019-04-26T07:49:04Z
Category Math, Numeric, Numerical
Home page https://github.com/fpco/safe-decimal#readme
Bug tracker https://github.com/fpco/safe-decimal/issues
Source repo head: git clone https://github.com/fpco/safe-decimal
Uploaded by lehins at 2019-04-26T01:05:07Z
Distributions LTSHaskell:0.2.1.0, NixOS:0.2.1.0, Stackage:0.2.1.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1830 total (18 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-04-26 [all 1 reports]

Readme for safe-decimal-0.1.0.0

[back to package description]

safe-decimal

An implementation of a decimal point data type, that is backed by any custom integral type. It is safe, because all runtime exceptions and integer overflows are prevented on arithmetic operations, namely things like integer overflows, underflows, division by zero etc. are checked for during the runtime.