class LTree
- LTree
- Reference
- Object
Overview
Basic implementation of a Tree data structure. Implemented using a List to accomodate N children per node.
NOTE Children in the Array are not sorted. This means the only way to traverse/search the tree is brute force, but for the current use case this isn't necessary.
Defined in:
l_tree.crConstructors
- .new(value : String, parent : LTree | Nil = nil)
- .new(value : String, children : Array(LTree), parent : LTree | Nil = nil)