metacomplete_ptrie 0.7.0

Generic trie data structure implementation (prefix tree) with support for different key and value types, and functions to search for common prefixes or postfixes.
Documentation
1
2
3
4
5
6
7
#![doc = include_str!("../README.md")]

pub mod error;
pub mod trie;
pub mod trie_node;

pub use trie::Trie;