[][src]Module trees::tree

Composed of a root Node and a list of its child Nodes.

  1. Support adding and storing nodes only once on tree creation, in a contiguous memory address.

  2. Support adding and storing nodes one by one, in scattered memory allocations.

  3. Tuple notations for construction.

  4. tr(),-,/ notations for construction.

  5. Can be converted to RcNode which has shared ownership.

Structs

Tree

Composed of a root Node and a list of its child Nodes.