At 3:49 PM +1100 3/11/03, Peter Skipworth wrote:

my @sorted_array = sort {$array[$a]->{color} cmp $array[$b]->{color} }
@array;

Rather,


my @sorted = sort { $a->{color} cmp $b->{color} } @array; # or maybe @$arrayref

--Ben


------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Html-template-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/html-template-users

Reply via email to