Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Trouble with Tie::IxHash

by ikegami (Patriarch)
on May 23, 2006 at 18:42 UTC ( [id://551215]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $hnr{'MAIN'}        = { %list1 };
    $hnr{'MAIN'}{'ZOP'} = { %list2 };
    $hnr{'MAIN'}{'AP'}  = { %list2 };
    
  2. or download this
    $hnr{'MAIN'}        = \%list1;
    $hnr{'MAIN'}{'ZOP'} = \%list2;
    $hnr{'MAIN'}{'AP'}  = \%list3;
    
  3. or download this
    use Data::Dumper qw( Dumper );
    use Tie::IxHash  ();
    ...
    %{$hnr{'MAIN'}{'AP'} } = @zop_and_ap_init;
    
    print Dumper(\%hnr);
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (1)
As of 2024-04-16 18:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found