packages feed

ListLike-1.0.2: ListLike.cabal

Name: ListLike
Version: 1.0.2
License: LGPL
Maintainer: John W. Lato <jwlato@gmail.com>
Author: John Goerzen
Copyright: Copyright (c) 2007-2008 John Goerzen
license-file: COPYRIGHT
extra-source-files: COPYING
Category: Generics
Build-Type: Simple
homepage: http://github.com/JohnLato/listlike
synopsis: Generic support for list-like structures
Description: Generic support for list-like structures in Haskell.
 .
 The ListLike module provides a common interface to the various Haskell
 types that are list-like.  Predefined interfaces include standard
 Haskell lists, Arrays, ByteStrings, and lazy ByteStrings.  Custom
 types can easily be made ListLike instances as well.
 .
 ListLike also provides for String-like types, such as String and
 ByteString, for types that support input and output, and for types that can handle
 infinite lists.
Stability: Stable
Hs-Source-Dirs: src
Exposed-Modules: Data.ListLike,
        Data.ListLike.Base,
        Data.ListLike.FoldableLL,
        Data.ListLike.IO,
        Data.ListLike.Instances,
        Data.ListLike.String,
        Data.ListLike.Utils
-- Other-Modules: Data.ConfigFile.Lexer
Build-Depends: base           >= 3 && < 5
              ,mtl            >= 1.1.0 && < 1.2
              ,containers     >= 0.3 && < 0.4
              ,bytestring     >= 0.9.1 && < 0.10
              ,array          >= 0.3 && < 0.4

Executable: runtests
Buildable: False
Main-Is: runtests.hs
HS-Source-Dirs: testsrc, .
Extensions: ExistentialQuantification, OverlappingInstances,
    UndecidableInstances, CPP