in reply to How to copy an list from a reference hash?
Try this:
sub SomeRoutine { my $href = shift; my $id = $href->{'ID'}; my @e = @{$href->{'E'}}; #........ } [download]
Dave