If I have a hash in Perl that contains complete and sequential integer mappings (ie, all keys from from 0 to n are mapped to something, no keys outside of this), is there a mean
$Hash_value = { '54' => 'abc', '55' => 'def', '56' => 'test', }; while (my ($key,$value) = each %{$Hash_value}) { print "\n $key > $value"; }