Help for this page

Select Code to Download


  1. or download this
       my %hash = tie( ('a' => 1), 'IxHash' );
    
  2. or download this
       my %big_hash = (
           'part_1' => tie( %{...}, 'MyTie'),
           'part_2' => tie( %{...}, 'MyTie'),
           ...
       );
    
  3. or download this
       tie my %part_1, 'IxHash';
       # set values for %part_1
    ...
          'part_2' => \%part_2,
          ...
       );