in reply to Re^2: How might I handle a special tree?
in thread How might I handle a special tree?
with ref
> What is missing in this structure is theplaceholder, which will have a group name...
No idea what you may mean...
Maybe
[ {A => [1, {B => [2,3,4]} ,5, {C => [ 6, { D => [7,8,9] } ] } ]
? ? ?
(untested)
TIMTOWTDI
Instead of a one element hash you could use a 2 element array.
Or put the "placeholder" into the sub array as first element.
I personally prefer the hash solution for readability, but keep in mind that keys are stringified.
Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How might I handle a special tree?
by vitoco (Hermit) on Dec 07, 2014 at 23:34 UTC |