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
|
Name: MemoTrie
Version: 0.5
Cabal-Version: >= 1.2
Synopsis: Trie-based memo functions
Category: Data
Description:
MemoTrie provides a basis for memoized functions over some domains,
using tries. It's based on ideas from Ralf Hinze and code from
Spencer Janssen.
.
Project wiki page: <http://haskell.org/haskellwiki/MemoTrie>
.
© 2008-2012 by Conal Elliott; BSD3 license.
Author: Conal Elliott
Maintainer: conal@conal.net
Homepage: http://haskell.org/haskellwiki/MemoTrie
Package-Url: http://code.haskell.org/MemoTrie
Copyright: (c) 2008-2012 by Conal Elliott
License: BSD3
License-File: COPYING
Stability: experimental
build-type: Simple
Library
hs-Source-Dirs: src
Extensions:
Build-Depends: base < 5, void
Exposed-Modules:
Data.MemoTrie
ghc-options: -Wall
|