in reply to Re: Got those HTML::Template and subroutine blues
in thread Got those HTML::Template and subroutine blues
I oversimplified my script for the post, though. Was using Tie::IxHash for insertion-order retrieval of hash elements.
I didn't spot anything in perldoc IxHash.pm about using it with hash o' hashes.use Tie::IxHash; tie my %urlhashA, "Tie::IxHash"; %urlhashA = ( 'blah' => 'URL', 'bleh' => 'notherURL', 'bloo' => 'ananotherURL', );
Is this do-able?
Update: chipmunk's post below puts a glide in my stride. 8^) chipmunk++.
cheers,
Don
striving for Perl Adept
(it's pronounced "why-bick")
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: (2) Got those HTML::Template and subroutine blues (tie hash o' hashes?)
by chipmunk (Parson) on Dec 23, 2000 at 00:48 UTC | |
by repson (Chaplain) on Dec 31, 2000 at 05:38 UTC |