generator-0.5: generator.cabal
Name: generator
Version: 0.5
Category: Control
Synopsis: A list monad transformer and related functions.
Description:
A list monad transformer and a generic List class.
Consumer and Generator monad transformers to create
and iterate 'ListT's in a manner similar to
Python generators.
A Tree module for searching and pruning
trees expressed as 'List's whose underlying monad
is also a List.
License: BSD3
License-file: LICENSE
Author: Yair Chuchem
Maintainer: yairchu@gmail.com
Homepage: http://github.com/yairchu/generator/tree
Cabal-Version: >= 1.2
Stability: experiemental
Build-type: Simple
Library
hs-Source-Dirs: src
Extensions:
Build-Depends: base >= 3 && < 5, mtl, MaybeT
Exposed-modules: Control.Monad.ListT,
Control.Monad.DList,
Control.Monad.Consumer,
Control.Monad.Generator,
Data.List.Class,
Data.List.Tree
Ghc-Options: -O2 -Wall
Extensions: FlexibleContexts,
FlexibleInstances,
FunctionalDependencies,
MultiParamTypeClasses,
RankNTypes,
UndecidableInstances