Crates.io | arbtree |
lib.rs | arbtree |
version | 0.2.0 |
source | src |
created_at | 2022-05-08 10:48:30.664955 |
updated_at | 2022-06-25 16:36:23.137965 |
description | A small library for general purpose tree data structures |
homepage | |
repository | https://github.com/ilmari-h/arbtree.rs |
max_upload_size | |
id | 582439 |
size | 27,639 |
arbtree
is a library for general purpose tree data structures.
The library provides an interface for working with trees of arbitrary depth and width.
The implementation is simple and uses arena allocation where nodes are stored in a Vec
.
No unsafe blocks and no additional overhead from using smart pointers.