I'm using the bounded version of the Multiway Tree. I can create my element type and instantiate a tree of my type but how do I create the root? I see several forms of Insert_Child. All my attempts at using Insert_Child fail because I use No_Element for the Parent or Before argument.
Does anyone have an example of using the multiway tree package they can point me to?
I'm using the free Gnat version of Ada if it matters.
Thank you for the answer but your description of the root not having an element may cause me to change my design. I anticipated building a tree of components made of subcomponents and so forth. I wanted to roll up the property, say mass or price, of each element into the total for the assembly and store it in the root.
I guess I can have the first node I create be the placeholder for the assembly total, then have the real tree branch off of that. Seems clumsy but workable.
/s/ Bob