Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Re: flattening Complex Datastructures

by jdporter (Paladin)
on Feb 11, 2003 at 17:43 UTC ( [id://234470]=note: print w/replies, xml ) Need Help??


in reply to Re: flattening Complex Datastructures
in thread flattening Complex Datastructures

Your approach is really good if, all in all, what you need is to always reach the leaves of the tree
Yep. How many times have we seen this question:
I have a vector of keys, @keys = qw( foo bar none ); How can I easily get at the HoHoH element $h{foo}{bar}{none} ???
If we use the perl4 approach to multidimensional hashes, instead of true nested hashes, it's simple:
$h{@keys}
...one that you could tie your hashes to: you keep working with HoH on the front-end, and get with a flat hash on the back-end.
Yes, that sounds very much like the Tie::Multidim module.

jdporter
The 6th Rule of Perl Club is -- There is no Rule #6.

Replies are listed 'Best First'.
Re: Re: Re: flattening Complex Datastructures
by Ctrl-z (Friar) on Feb 11, 2003 at 17:56 UTC
    Ah!, now i get your original post. This is pretty cool.


    time was, I could move my arms like a bird and...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://234470]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (5)
As of 2024-04-24 08:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found