Tree
Module Collections.Trees
Mutable
The Trees.Mutable sub-module is a collection of functions for working with trees.
For more object-oriented access, use rootWrapped , which gives a WrappedNode instance.
From Object
The FromObject sub-module allows tree-like access to objects via asDynamicTraversable and create .
asDynamicTraversable will present a dynamic tree structure based on the live object.
It returns a TraversableTree which can be used with functions in the Trees.Traverse sub-module.
create in contrast will take a snapshot of the object, returning a Type TreeNode representation.