radix_tree library

A Radix Tree.

Classes

RadixTree<T>
Radix trees are String -> T mappings which allow quick lookups on the strings.
RadixTreeNode<T>
A node in a radix tree.
RadixTreeUtils
Radix tree utility functions.

Typedefs

RadixTreeKVVisitor<T> = void Function(String key, T value)
Signature for callbacks passed to RadixTree.visit, RadixTree.visitRoot and RadixTree.visitRootPrefixed methods.