- or download this
@hash{sort keys %hash} = values %hash;
- or download this
$ perl -MData::Dump -e 'my %x = qw{a 1 b 2 c 3}; dd \%x; @x{sort keys
+%x} = values %x; dd \%x'
- or download this
{ a => 1, b => 2, c => 3 }
- or download this
{ a => 1, b => 2, c => 3 }
{ a => 1, b => 3, c => 2 }
{ a => 2, b => 3, c => 1 }
- or download this
@hash{keys %hash} = values %hash;