Hi all, It seems that is some instances trees are behaving more like dictionaries, where the dictionary key is the path, and the dictionary value is a normal list. The way that these trees are implemented 'under the hood' should of course make no real difference, as long as they behave like trees. But every now and then I expect something to work, and then I get thrown.
For example, lets say you have a tree with a few paths: {0;0;0}, {0;1;0}, {0;1;1}. If you pass this into a "Tree Branch" component, and you specify the path {0;1}, then I would expect to get out a branch with two paths in it: {1;0}, and {1,1}. But this does not work - it gives an error... Or am I thinking about this in the wrong way? Patrick