1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
name: control-monad-loop
version: 0.1
synopsis: Simple monad transformer for imperative-style loops
description:
A library of looping constructs with @continue@ and @exit@ control flow
statements.
homepage: https://github.com/joeyadams/haskell-control-monad-loop
bug-reports: https://github.com/joeyadams/haskell-control-monad-loop/issues
license: BSD3
license-file: LICENSE
author: Joey Adams
maintainer: joeyadams3.14159@gmail.com
copyright: Copyright (c) Joseph Adams 2012
category: Control
build-type: Simple
cabal-version: >=1.8
extra-source-files:
test/leak.hs
test/liftLocal.hs
test/lift-continue.hs
test/recycled-numbers.hs
source-repository head
type: git
location: git://github.com/joeyadams/haskell-control-monad-loop
library
exposed-modules:
Control.Monad.Trans.Loop
build-depends : base >= 4 && < 5
, transformers
, transformers-base
ghc-options: -Wall -fwarn-tabs
|