Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Sorting result of function call

by Hofmator (Curate)
on Dec 20, 2006 at 09:29 UTC ( [id://590870]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    say sort &get_keys();        # called:array:13
    say sort @{[get_keys]};      # called:array:13
    say sort @{[get_keys()]};    # called:array:13
    
  2. or download this
               NAME(LIST);    # & is optional with parentheses.
               NAME LIST;     # Parentheses optional if predeclared/import
    +ed.
               &NAME(LIST);   # Circumvent prototypes.
    
  3. or download this
    for my $type ( sort( filetypes_supported() ) ) {
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://590870]
Approved by Corion
Front-paged by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (2)
As of 2024-04-20 03:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found