- or download this
my $source = {
f1 => 'garbage',
...
f10 => [ 'important', 'data' ],
f11 => [ 'more', 'garbage' ]
};
- or download this
my $filter = {
f3 => 1,
...
},
f10 => 1
};
- or download this
my $output = {
f3 => 'important data',
...
},
f10 => [ 'important', 'data' ],
};
- or download this
sub hash_filter {
my $source = shift;
...
return \%output;
}