Is there a way to append to a data tree? Or, in other words, combine two data trees (with matching path structures) but not merge them?
For example, I have two trees:
(Paths = 2)
{0;1}
{0;2}
and
(Paths = 3)
{0;1}
{0;2}
{0;3}
and I would like to get
(Paths = 5)
{0;1}
{0;2}
{0;3}
{0;4}
{0;5}
Any ideas?
Tags: