X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlsyn.pod;h=ec865103c55ae71e6c6556ec94b029d0564514f8;hb=9f2f055aa1e8c86d97b5ea42473ab1747f518f3a;hp=177ff4c4b99810e930131784a8c73f62ebf905a9;hpb=8c02634dc0c7d7611687ee447f001fcf1c387de5;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 177ff4c..ec86510 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -560,25 +560,25 @@ time. The exceptions are that when EXPR is: =over 4 -=item o +=item * a subroutine or method call -=item o +=item * a regular expression match, i.e. C or C<$foo =~ /REGEX/>, or a negated regular expression match C<$foo !~ /REGEX/>. -=item o +=item * a comparison such as C<$_ E 10> or C<$x eq "abc"> (or of course C<$_ ~~ $c>) -=item o +=item * C, C, or C -=item o +=item * A negated expression C or C, or a logical exclusive-or C<(...) xor (...)>. @@ -607,7 +607,7 @@ is applied recursively to the first argument. These rules look complicated, but usually they will do what you want. For example you could write: - when (/^\d$/ && $_ < 75) { ... } + when (/^\d+$/ && $_ < 75) { ... } Another useful shortcut is that, if you use a literal array or hash as the argument to C, it is turned into a @@ -634,7 +634,7 @@ case to the next: given($foo) { when (/x/) { say '$foo contains an x'; continue } when (/y/) { say '$foo contains a y' } - default { say '$foo contains neither an x nor a y' } + default { say '$foo does not contain a y' } } =head3 Switching in a loop @@ -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 value slice truth grep $_, @$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}