@hackage data-stringmap1.0.1.1
An efficient implementation of maps from strings to arbitrary values
Categories
License
MIT
Maintainer
Uwe Schmidt (uwe@fh-wedel.de), Sebastian Philipp (sebastian@spawnhost.de)
Links
Versions
Installation
Dependencies (6)
- base >=4.5 && <5
- binary >=0.5 && <1
- bytestring ==0.10.0.2
- containers >=0.4 && <1
- deepseq >=1.2 && <2
- data-size >=0.1.3 && <1 Show all…
Dependents (4)
@hackage/clafer, @hackage/acme-everything, @hackage/claferIG, @hackage/hunt-searchengine
Package Flags
with-sizeable(off by default)
test-properties(on by default)
test-strict(off by default)
An efficient implementation of maps from strings to arbitrary values.
Values can associated with an arbitrary byte key.
Searching for keys is very fast, but
the prefix tree probably consumes more memory than
Data.Map
. The main differences are the special
prefixFind
functions, which can be used to perform prefix queries.