tries: Various trie implementations in Haskell

[ bsd3, data, library, tree ] [ Propose Tags ]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.4.1, 0.0.4.2, 0.0.5, 0.0.6, 0.0.6.1 (info)
Dependencies base (>=4.8 && <5.0), bytestring, bytestring-trie, composition, containers, deepseq, hashable, keys, QuickCheck (>=2.9.2), quickcheck-instances, rose-trees (>=0.0.2.1), semigroups, sets (>=0.0.5.2), unordered-containers [details]
License BSD-3-Clause
Copyright 2018 Athan Clark
Author Athan Clark
Maintainer athan.clark@localcooking.com
Category Data, Tree
Home page https://github.com/athanclark/tries#readme
Bug tracker https://github.com/athanclark/tries/issues
Source repo head: git clone https://github.com/athanclark/tries
Uploaded by athanclark at 2018-03-16T22:22:02Z
Distributions
Reverse Dependencies 2 direct, 2 indirect [details]
Downloads 4602 total (27 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-03-17 [all 1 reports]

Readme for tries-0.0.5

[back to package description]

tries

This is a collection and comparison of some basic, pure trie implementations.

So far, there is:

Running the Tests

stack test

and

Running the Benchmarks

for insert / delete:

stack bench --benchmark-arguments="--output profile.html"

for lookups:

stack bench --benchmark-arguments="--output profile-lookup.html" --flag tries:Lookup