- or download this
my %hash = (
'this_type' => { 'field1' => { REQ => 'N',
...
},
# and a lot more records...
);
- or download this
@$hash{$type}->{@sorted_keys}->{data} = @mydata;
- or download this
for my $k (@sorted_keys) {
$hash{$type}->{$k}->{data} = shift @mydata;
}