arbtree 0.2.0

A small library for general purpose tree data structures
Documentation
  • Coverage
  • 29.63%
    8 out of 27 items documented0 out of 20 items with examples
  • Size
  • Source code size: 27.32 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.19 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ilmari-h

arbtree

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.