yav / monadlib
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
Iavor Diatchki (author)
Fri Dec 04 10:35:17 -0800 2009
monadlib /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
CHANGES | ||
| |
LICENSE | ||
| |
README | ||
| |
Setup.hs | ||
| |
experimental/ | ||
| |
monadLib.cabal | ||
| |
proofs/ | ||
| |
src/ | ||
| |
tests/ |
README
This is version 3 of 'monadLib'. The library is in the directory 'src'. Files ~~~~~ LICENSE The license for the library. README This file. Setup.hs Used by the Cabal framework. monadLib.cabal Used by the Cabal framework. src/MonadLib.hs The library. src/MonadLib/Derive.hs Definitions useful for monads defined with newtype. src/MonadLib/Monads.hs Definitions for some more base monads (optional). Simple Installation ~~~~~~~~~~~~~~~~~~~ To use 'monadLib' you should place the file 'MonadLib.hs' (and perhaps also 'Monads.hs') in a place where your implementation can find it. Cabal Installation ~~~~~~~~~~~~~~~~~~ The library supports the Cabal framework which has many options. To see the available commands try: > runhaskell Setup.hs --help A typical installation might look something like this: > runhaskell Setup.hs configure > runhaskell Setup.hs build > runhaskell Setup.hs haddock -- if you have haddock, else skip > runhaskell Setup.hs install

