this is another simple one, but can't figure it out. I'm trying to take a series of branches and repeat them - but with out their content ending up in the same branches...
I'm not really sure if this can be done parametrically. The easiest way to take care of this is just with two extra path matchers where you just sepecify "A" directly (so the input would be {a;b} and the output would be {1;b}). Then just merge the theree streams together.
Permalink Reply by taz on March 13, 2010 at 12:08pm
I think this will do ya... each branch can have a unique number of items.
(Damien, it's not as bad as I thought it would be...)
Permalink Reply by taz on March 13, 2010 at 1:37pm
Actually, strictly speaking, the first [Path Mapper] isn't necessary....
and if I wanted to follow this duplication by converting the hierarchy of branches into a single level where instead of
{0;1},{0:2},{0:3},{1;0},{1;1},...
I would get the following
{0;1},{0:2},{0:3},{0;4},{0;5},...???