name: folds category: Data, Comonads, Enumerator version: 0.6.2 license: BSD3 cabal-version: >= 1.8 license-file: LICENSE author: Edward A. Kmett maintainer: Edward A. Kmett stability: experimental homepage: http://github.com/ekmett/folds bug-reports: http://github.com/ekmett/folds/issues copyright: Copyright (C) 2009-2013 Edward A. Kmett build-type: Custom synopsis: Beautiful Folding extra-source-files: .ghci .travis.yml .gitignore .vim.custom CHANGELOG.markdown README.markdown description: This package is a playground full of comonadic folds. . This style of fold is documented in . This package can be seen as what happens if you chase Max Rabkin's to its logical conclusion. . More information on this approach can be found in the and posts by Conal Elliott, as well as in Gabriel Gonzales' source-repository head type: git location: git://github.com/ekmett/folds.git -- You can disable the doctests test suite with -f-test-doctests flag test-doctests default: True manual: True -- You can disable the hlint test suite with -f-test-hlint flag test-hlint default: True manual: True -- You can disable the optimizations -f-optimize for faster builds flag optimize default: True manual: True library build-depends: base >= 4 && < 5, comonad >= 4 && < 5, contravariant >= 0.4.2 && < 2, lens >= 4 && < 5, pointed >= 4 && < 5, profunctors >= 4 && < 5, reflection >= 1.3 && < 2, semigroupoids >= 4 && < 5, tagged >= 0.7 && < 1, transformers >= 0.3 && < 0.5, vector >= 0.10 && < 0.11 hs-source-dirs: src exposed-modules: Data.Fold Data.Fold.Class Data.Fold.Internal Data.Fold.L Data.Fold.L' Data.Fold.L1 Data.Fold.L1' Data.Fold.M Data.Fold.M1 Data.Fold.R Data.Fold.R1 ghc-options: -Wall if flag(optimize) ghc-options: -O2 test-suite hlint type: exitcode-stdio-1.0 main-is: hlint.hs ghc-options: -w -threaded -rtsopts -with-rtsopts=-N hs-source-dirs: tests if !flag(test-hlint) buildable: False else build-depends: base, hlint >= 1.7 test-suite doctests type: exitcode-stdio-1.0 main-is: doctests.hs ghc-options: -Wall -threaded hs-source-dirs: tests if !flag(test-doctests) buildable: False else build-depends: base, bytestring, directory >= 1.0, deepseq, doctest >= 0.9.1, filepath, mtl, semigroups >= 0.9 if impl(ghc<7.6.1) ghc-options: -Werror