Crates.io | artful |
lib.rs | artful |
version | 0.1.1 |
source | src |
created_at | 2022-08-31 09:17:35.783733 |
updated_at | 2022-09-02 06:05:30.065398 |
description | Low-memory overhead and high-performance adaptive radix tree |
homepage | |
repository | |
max_upload_size | |
id | 655571 |
size | 6,311,786 |
Artful is an adaptive radix tree library for Rust. At a high-level, it's like a BTreeMap. It is based on the implementation of paper, see The Adaptive Radix Tree: ARTful indexing for Main-Memory Databases for more information.
Artful is available on crates.io, and API Documentation is available on docs.rs.
BTreeMap<K,V>
Artful is available on crates.io The recommended way to use it is to add a line into your Cargo.toml such as:
[dependencies]
artful = "0.1.1"