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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
Name: ListLike
Version: 3.1.4
License: BSD3
Maintainer: John Lato <jwlato@gmail.com>
Author: John Goerzen
Copyright: Copyright (c) 2007-2008 John Goerzen
license-file: COPYRIGHT
extra-source-files: COPYRIGHT, README
Category: Generics
Cabal-Version: >= 1.6
Build-Type: Simple
homepage: http://software.complete.org/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
Library
Hs-Source-Dirs: src
Exposed-Modules: Data.ListLike,
Data.ListLike.Base,
Data.ListLike.CharString,
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
,containers >= 0.3 && < 0.5
,bytestring >= 0.9.1 && < 0.10
,array >= 0.3 && < 0.5
Executable runtests
Buildable: False
Main-Is: runtests.hs
HS-Source-Dirs: testsrc, .
Extensions: ExistentialQuantification, OverlappingInstances,
UndecidableInstances, CPP
source-repository head
type: git
location: git://github.com/JohnLato/listlike.git
|