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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
Name: ListLike
Version: 4.0.2
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.md
Category: Generics
Cabal-Version: >= 1.8
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.Text
Data.ListLike.Text.Text
Data.ListLike.Text.TextLazy
Data.ListLike.Utils
Data.ListLike.Vector
Data.ListLike.Vector.Generic
Data.ListLike.Vector.Storable
Data.ListLike.Vector.Unboxed
Data.ListLike.Vector.Vector
-- Other-Modules: Data.ConfigFile.Lexer
Build-Depends: base >= 3 && < 5
,containers >= 0.3 && < 0.6
,bytestring >= 0.9.1 && < 0.11
,array >= 0.3 && < 0.6
,text >= 0.11 && < 1.2
,vector >= 0.5 && < 0.11
Test-suite listlike-tests
Hs-source-dirs: src testsrc
Main-is: runtests.hs
Type: exitcode-stdio-1.0
Other-modules: TestInfrastructure
Build-depends: base
,ListLike
,HUnit >= 1.2 && < 2
,QuickCheck >= 2.4 && < 3
,random >= 1 && < 2
,array
,bytestring
,containers
,text
,vector
source-repository head
type: git
location: git://github.com/JohnLato/listlike.git
|