Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Okay so I came across a code which looks like

@documents_names = sort {
         !!$deleted_documents_names{$a} == !!$deleted_documents_names{$b}
          ? uc($a) cmp uc($b)
          : !!$deleted_documents_names{$a}
          cmp !!$deleted_documents_names{$b}
         } @documents_names;

It's the first time I'm seeing the use of double negation. What's the use of it? When would a person use it?

share|improve this question
Thanks @FrankB. – Chankey Pathak Sep 5 '12 at 10:10

2 Answers

up vote 31 down vote accepted

It converts non-boolean types to boolean (dualvar(0,"") or 1).

It is a shortcut way of doing this, instead of trying to cast it explicitly (which may take more characters). The ! operator negates the truthness of its argument. Hence, two of them are used.

Many object types are "truthy", and others are "falsey".

  • The only false values are 0, undef, "", "0" and some overloaded objects.
  • Examples of true values are 1, "asdf", and all other values.
share|improve this answer
1  
Your answer + stackoverflow.com/a/2168511/257635 = Satisfaction! :P – Chankey Pathak Sep 5 '12 at 10:14
'null' would evaluate to true in Perl. Did you mean undef? – Zaid Sep 5 '12 at 10:36
this is not my native language... (I mean in terms of programming languages) – ronalchn Sep 5 '12 at 10:37
@amon : What about the empty list ()? – Zaid Sep 5 '12 at 11:01
@Zaid … I have to read perlsyn more often, thanks – amon Sep 5 '12 at 11:50
show 2 more comments

That is a lot of funk for a sort block!

It's essentially a two-level sort :

  1. ascii-betical
  2. deleted files first, then undeleted

So one could rewrite it as (untested):

@documents = sort {  exists $deleted_documents_names{$a} # same effect as '!!'
                       <=> 
                     exists $deleted_documents_names{$b}
                  ||
                     uc( $a ) cmp uc( $b )
                  }
             @documents;
share|improve this answer
You're right Zaid. – Chankey Pathak Sep 5 '12 at 11:45
That's not completely right since <=> is an operator for numbers. You should use cmp instead to work with the alphabetical comparison of strings. Nice sort clarification though. :) – memowe Sep 5 '12 at 12:02
@memowe : Yeah, thanks for that.. like I said I hadn't tested it :) – Zaid Sep 5 '12 at 12:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.