FSharpx.Collections


BinaryRoseTree<'T> Type

Multi-way tree, also known as rose tree. This RoseTree uses a Vector for the children RoseTree forest. Adapted from @mausch F# adaptation of Experimental.RoseTree.

Union cases

Union case Description

Nil

Full Usage: Nil

Node('T, BinaryRoseTree<'T>, BinaryRoseTree<'T>)

Full Usage: Node('T, BinaryRoseTree<'T>, BinaryRoseTree<'T>)

Parameters:
Item1 : 'T
Item2 : BinaryRoseTree<'T>
Item3 : BinaryRoseTree<'T>