prefix_tree_map 0.1.0

A Rust implementation of generic prefix tree (trie) map with wildcard capture support
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

mod builder;
mod capture_map;
mod key_part;
mod prefix_tree_map;

pub use self::{
    builder::PrefixTreeMapBuilder, capture_map::CaptureMap, key_part::KeyPart,
    prefix_tree_map::PrefixTreeMap,
};