Registry / utility / radix-trie

radix-trie

JSON →
library0.3.0rscratesunverified

Generic radix trie data-structure for efficient key-value storage.

# Cargo.toml [dependencies] radix_trie = "0.3.0"
INSTALL
IMPORT
SIG · RADIX-TRIE
R
radix-trie
utilityrustv0.3.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Trie
use radix_trie::Trie;

Insert and retrieve values from a radix trie.

use radix_trie::Trie; fn main() { let mut trie = Trie::new(); trie.insert("key", 42); assert_eq!(trie.get("key"), Some(&42)); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.3.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
radix-trie — cargo add radix-trie · libregistry