compt 1.5.1

A complete binary tree visitor library
Documentation
1
2
3
4
5
6
7
8
9
## Summary
A library that provides a complete binary tree visitor trait with common default implemenations for visiting strategies such as dfs_inorder or bfs, etc.
It also provides two flavors of a complete binary tree data structure with mutable and immutable visitors that implement the visitor trait.

Requires nightly rust to use these features:
~~~~
#![feature(ptr_offset_from)]
#![feature(trusted_len)]
~~~~