Skip to main content

Module tree

Module tree 

Source
Expand description

Columnar representations of tree-structured data.

A Tree<T> is a node with a value of type T and a list of children. Trees<TC> stores a collection of trees with columnar storage for node values.

Structsยง

Tree
A tree node with a value and children.
Trees
A stand-in for Vec<Tree<T>>, with columnar storage for node values.
TreesRef
A reference to a single node within a Trees container.