packages feed

list-tries 0.5 → 0.5.1

raw patch · 6 files changed

+14/−14 lines, 6 filesdep ~binary

Dependency ranges changed: binary

Files

CHANGELOG.txt view
@@ -1,3 +1,10 @@+2013-05-10, 0.5.1:+	Fix cabal build.++	Minor documentation clarification.++	Update binary dependency.+ 2013-05-09, 0.5: 	Added the 'lookupPrefix' and 'deleteSuffixes' functions, of which especially 	the former was an embarrassing omission:
Data/ListTrie/Map.hs view
@@ -1043,8 +1043,7 @@ -- contains less than two keys, this function will return an empty map. -- -- If the longest common prefix of all keys in the trie is the empty list, this--- function is equivalent to 'children'. Otherwise, the result will always be a--- single-element map.+-- function is equivalent to 'children'. -- -- Examples: --
Data/ListTrie/Patricia/Map.hs view
@@ -1061,8 +1061,7 @@ -- contains less than two keys, this function will return an empty map. -- -- If the longest common prefix of all keys in the trie is the empty list, this--- function is equivalent to 'children'. Otherwise, the result will always be a--- single-element map.+-- function is equivalent to 'children'. -- -- Examples: --
Data/ListTrie/Patricia/Set.hs view
@@ -428,8 +428,7 @@ -- contains less than two keys, this function will return an empty map. -- -- If the longest common prefix of all keys in the trie is the empty list, this--- function is equivalent to 'children'. Otherwise, the result will always be a--- single-element map.+-- function is equivalent to 'children'. -- -- Examples: --
Data/ListTrie/Set.hs view
@@ -423,8 +423,7 @@ -- contains less than two keys, this function will return an empty map. -- -- If the longest common prefix of all keys in the trie is the empty list, this--- function is equivalent to 'children'. Otherwise, the result will always be a--- single-element map.+-- function is equivalent to 'children'. -- -- Examples: --
list-tries.cabal view
@@ -1,7 +1,7 @@ Cabal-Version: >= 1.6  Name:        list-tries-Version:     0.5+Version:     0.5.1 Homepage:    http://iki.fi/matti.niemenmaa/list-tries/ Synopsis:    Tries and Patricia tries: finite sets and maps for list keys Category:    Data, Data Structures@@ -41,12 +41,10 @@   default: False  Library-   Extensions: CPP-    Build-Depends: base       >= 3   && < 4.7                 , containers >= 0.3 && < 0.6                 , dlist      >= 0.4 && < 0.6-                , binary     >= 0.5 && < 0.7+                , binary     >= 0.5 && < 0.8     Exposed-Modules: Data.ListTrie.Base.Map                     Data.ListTrie.Map@@ -79,12 +77,11 @@     main-is: Main.hs    hs-source-dirs: ., tests-   Extensions: CPP     Build-Depends: base       >= 3   && < 4.7                 , containers >= 0.3 && < 0.6                 , dlist      >= 0.4 && < 0.6-                , binary     >= 0.5 && < 0.7+                , binary     >= 0.5 && < 0.8     if flag(testing)      Build-Depends: template-haskell           >= 2.3 && < 2.9