Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Error Sorting Array Reference?

by Tomte (Priest)
on Apr 25, 2006 at 16:02 UTC ( #545594=note: print w/replies, xml ) Need Help??


in reply to Error Sorting Array Reference?

While I really, really don't endorse it, you actually can use $a as your array-name, if you use a prototyped sub to sort (see sort):

#!/usr/local/bin/perl use strict; use warnings; my $a = [1, 2, 5, 7, 4]; sub mySort($$) { my ($a,$b) = @_; $a <=> $b; } print "", (sort mySort @$a), "\n"; __END__ Output: 12457

regards,
tomte


An intellectual is someone whose mind watches itself.
-- Albert Camus

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://545594]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2023-03-28 21:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (69 votes). Check out past polls.

    Notices?