Consider the data block below, how can I maintain sorted the array by the 3rd field, and keep pushing items?
$VAR1 = [
'1111',
'http://...',
3 #this is one of the 3rd field mentioned above
];
$VARN = [
'5555',
'http://...',
0
];
My code looks like:
my @curItem = ($item->{id}, $item->{href}, getTotal( $item->{id}) );
push @items, \@curItem;
I've found this module which is similar to what I need.
Any help appreciated.