perlsyn: equivalent code for HASH ~~ ARRAY
brian d foy [Sat, 7 Jun 2008 23:59:22 +0000 (00:59 +0100)]
Message-ID: <070620082359221579%brian.d.foy@gmail.com>

p4raw-id: //depot/perl@34027

pod/perlsyn.pod

index 44c4f1a..ec86510 100644 (file)
@@ -674,7 +674,7 @@ order, determines the match behaviour.
     Any     Code[+]   scalar sub truth         $b->($a)
 
     Hash    Hash      hash keys identical      [sort keys %$a]~~[sort keys %$b]
-    Hash    Array     hash slice existence     grep {exists $a->{$_}} @$b
+    Hash    Array     hash slice existence     @$b == grep {exists $a->{$_}} @$b
     Hash    Regex     hash key grep            grep /$b/, keys %$a
     Hash    Any       hash entry existence     exists $a->{$b}