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