Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^2: Sort undef

by SuicideJunkie (Vicar)
on Jun 12, 2017 at 16:19 UTC ( [id://1192615]=note: print w/replies, xml ) Need Help??


in reply to Re: Sort undef
in thread Sort undef

This being a simple case, I thought the typical way to do it would be in the form:

sort { (defined($a) <=> defined($b)) || ($a cmp $b) }

Replies are listed 'Best First'.
Re^3: Sort undef
by LanX (Saint) on Jun 12, 2017 at 16:29 UTC
    Nice! I was worried that <=> can't handle "" without warnings, but that's not the case here. :)

    (empty string is the false value returned from defined(undef) )

    EDIT

    Forget it, I'm getting old ... false is a dual var which resolves to 0 in numeric context.

    Cheers Rolf
    (addicted to the Perl Programming Language and ☆☆☆☆ :)
    Je suis Charlie!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-19 20:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found