radyx 1.0.0

A basic radix tree implementation
Documentation
  • Coverage
  • 57.14%
    4 out of 7 items documented4 out of 6 items with examples
  • Size
  • Source code size: 13.3 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.42 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • emrecancorapci/radyx
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • emrecancorapci

RADYX - A Basic Radix Tree Implementation

A Rust implementation of a Radix Tree (also known as a Compact Prefix Tree) designed to be efficient, scalable, and easy to use. Radix Trees are widely used in applications such as autocomplete systems, routing tables, and prefix-based search.

Installation

Add the following to your Cargo.toml:

[dependencies]
radyx = "*"

or use the cargo cli

cargo add radyx

Usage

use radyx::Radyx;

let mut node: Radyx<&str> = Radyx::default();

node.insert("/home", "Home");
node.insert("/nothome", "Elsewhere");

assert_eq!(Some(&"Home"), node.get("/home"));