@hackage generic-trie0.3.2
A map, where the keys may be complex structured data.
Installation
Tested Compilers
Dependencies (3)
- base >=4.7.0.2 && <4.18
- containers >=0.4.2.1 && <0.7
- transformers >=0.2 && <0.7 Show all…
Dependents (4)
@hackage/cryptol, @hackage/acme-everything, @hackage/chitauri, @hackage/heidi
This type implements maps where the keys are themselves
complex structured data. For example, the keys may be
the abstract syntax trees for a programming language.
The map is implemented as a trie, so common parts of the
keys will be shared in the representation. The library
provides a generic implementation of the data structure,
so values of types that have support for Generic may
be automatically used as keys in the map.