cedarwood icon indicating copy to clipboard operation
cedarwood copied to clipboard

Efficiently-updatable double-array trie in Rust (ported from cedar)

Results 2 cedarwood issues
Sort by recently updated
recently updated
newest added

I believe this has very little impact on performance. https://rust.godbolt.org/z/1f1jxM4a7

To reproduce: ```rust use cedarwood::Cedar; // cedarwood = "0.4.6" fn main() { let mut set = Cedar::new(); set.update("apple", 1); set.update("bpple", 1); let ids = set.common_prefix_predict_iter("").collect::(); println!("{:?}", ids); } ```