cautious: Keep track of warnings and errors during calculations.

[ bsd3, library, testing ] [ Propose Tags ]

A Cautious monad "Monoid w => Cautious w e a" which keeps track of the success of a task. The options are "CautiousWarning w a" (where "CautiousWarning mempty a" represents "success") and "CautiousError e". In addition, there is a monadtransformer "Monad m, Monoid w => CautiousT w e m a"


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.0.0, 0.1.0.0, 0.3.0.0
Change log ChangeLog.md
Dependencies aeson, base (>=4.10 && <5), genvalidity-hspec-aeson, hspec, hspec-discover, QuickCheck (>=2.9 && <2.11), transformers, validity [details]
License BSD-3-Clause
Copyright 2018 Nick Van den Broeck
Author Nick Van den Broeck
Maintainer nick.van.den.broeck666@gmail.com
Category Testing
Home page https://github.com/Nickske666/cautious#readme
Bug tracker https://github.com/Nickske666/cautious/issues
Source repo head: git clone https://github.com/Nickske666/cautious
Uploaded by NickskeVdb at 2018-04-16T19:42:36Z
Distributions NixOS:0.3.0.0
Reverse Dependencies 1 direct, 1 indirect [details]
Downloads 1839 total (11 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-04-16 [all 1 reports]

Readme for cautious-0.0.0.0

[back to package description]

Cautious

Cautious provides a monad Cautious w e, which keeps track of warnings w and errors e during calculations. CautiousT w e m is a MonadTransform based on Cautious.