Difference between revisions of "MemoTrie"

From HaskellWiki
Jump to navigation Jump to search
(new package)
 
(redirect to github)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
[[Category:Packages]]
 
[[Category:Packages]]
   
  +
Description moved to [https://github.com/conal/MemoTrie github page].
== Abstract ==
 
 
'''MemoTrie''' is functional library for creating efficient memo functions, using [http://en.wikipedia.org/wiki/Trie trie]s. It's based on some code I got from Spencer Janssen and uses type families.
 
 
Besides this wiki page, here are more ways to find out about MemoTrie:
 
* Read [http://code.haskell.org/MemoTrie/doc/html/ the library documentation]. ''(Missing until haddock is ready for ghc-6.9.)''
 
* Get the code repository: '''<tt>darcs get http://code.haskell.org/MemoTrie</tt>'''.
 
* Install from [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/MemoTrie Hackage].
 
* See the [[MemoTrie/Versions| version history]].
 
 
Please leave comments at the [[Talk:MemoTrie|Talk page]].
 
 
== See also ==
 
 
* [http://www.haskell.org/haskellwiki/GHC/Indexed_types#An_associated_data_type_example An associated data type example]
 
* [http://citeseer.ist.psu.edu/233124.html Generalizing Generalized Tries]
 

Latest revision as of 17:20, 29 November 2012


Description moved to github page.