Skip to content

Commit

Permalink
Update from Hackage at 2016-09-28T11:24:04+00:00
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Sep 28, 2016
1 parent 3940847 commit 2586709
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
42 changes: 42 additions & 0 deletions linked-list-with-iterator/0.1.0.0/linked-list-with-iterator.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: linked-list-with-iterator
version: 0.1.0.0
synopsis: A pure linked list which is mutable through iterators.
description:
It's iternally implemented by 'Data.IntMap.Strict.IntMap' or 'Data.Map.Strict.Map' 'Integer',
using 'Int' or 'Integer' as the iterator type respectly.
Most of the operations cost @O(lg N)@.
.
Each newly inserted element will consume a unique number and never reuse old numbers.
Choose 'Int' one if you're sure that there're no more than 'Int' space times of insertions,
or choose 'Integer' one otherwise.
homepage: https://github.com/CindyLinz/Haskell-linked-list-with-iterator#readme
license: BSD3
license-file: LICENSE
author: Cindy Wang (CindyLinz)
maintainer: cindylinz@gmail.com
copyright: MIT
category: Data Structures
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10

library
hs-source-dirs: src
exposed-modules: Data.IterLinkedList
, Data.IterLinkedList.Internal
build-depends: base >= 4.3 && < 5
, containers == 0.5.*
default-language: Haskell2010

test-suite linked-list-with-iterator-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, linked-list-with-iterator
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010

source-repository head
type: git
location: https://github.com/CindyLinz/Haskell-linked-list-with-iterator
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"ba168812e8e7a44f91bb0a4099329f33","Skein512_512":"259869b612ccb9d1c2e1d3ec326b79b9c252b7b8d626ef46927554d8a18412471d966f99f1e793968e72125c2850b83b37e0cb1a1e7555ea883ab453bdedcbb9","SHA1":"69b9dcd93e41737f138de2a4101daf91084d13a9","SHA512":"6a455c355ea13cc34bba85a85e84e3d528908cc42a5a3875cd7ccc1141fb7fefd5860a0d38ee851faca3862d37f41574f136fbeae4b9fd31e76d8494c6d47de3","SHA256":"fc61ca669aaacf7401db5261e956f922db210cf02bbb540a6efd753060153853"},"package-locations":["https://hackage.haskell.org/package/linked-list-with-iterator-0.1.0.0/linked-list-with-iterator-0.1.0.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/linked-list-with-iterator-0.1.0.0.tar.gz"],"package-size":4444}

0 comments on commit 2586709

Please sign in to comment.