Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Error Sorting Array Reference?

by Tomte (Priest)
on Apr 25, 2006 at 16:02 UTC ( [id://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?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (7)
As of 2024-04-24 11:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found