Crate sequence_trie

source ·
Expand description

Sequence Trie - a trie-like data-structure for storing sequences of values.

See the SequenceTrie type for documentation.

Structs

Iterator over the keys and values of a SequenceTrie.
Iterator over the keys of a SequenceTrie.
Iterator over the longest prefix of nodes which matches a key.
A SequenceTrie is recursively defined as a value and a map containing child Tries.
Iterator over the values of a SequenceTrie.

Traits

Aggregate trait for types which can be used to key a SequenceTrie.

Type Definitions

Vector of key fragment references and values, yielded during iteration.