Write and read tree graphs to and from contigious blocks of memory. This comes in handy if you have really large trees you want to read and load from a memory mapped file.
A useful tree representation for situations there you want to serialize / deserialize a tree, or query it very quickly. Do not use this crate if you need to change your tree frequently. The implementation is generic over the value type associated with their nodes and their binary representation.
Consider this tree:
tree
(1) root
├── (2)
└── (3)
└── (4)
We write trees in a depth first manner. With each subrtee written, before the parent node which owns it.
```rust use contigious_tree::{TreeBuilder, LeI32};
/// Value type is a singend 32 Bit integer with a little endian representation. type Node = LeI32;
// Any io::Write, will do for writing
let mut persistence = Vec::
let mut builder = TreeBuilder::
```rust use contigious_tree::{TreeVec, LeI32};
let persistence: Vec
/// Value type is a singend 32 Bit integer with a little endian representation. type Node = LeI32;
let tree = TreeVec::