- or download this
$data = { Elements => {
AlphaKey => {
...
OtherVal => 'morerandomthings'
},
}};
- or download this
$sorted = [
{
...
OtherVal => 'randomthings'
},
];
- or download this
my @pri = sort { $a <=> $b } map { $data->{Elements}{$_}->{priority} }
+ keys %{$data->{Elements}};