diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2012-01-05 14:26:18 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-01-05 14:29:48 -0800 |
commit | 59ab9d6e3943e10a4d171dcf5082edc7a5b9e9e5 (patch) | |
tree | 1bcb08cfd2382a526d3b9ee8bf4b2bdd8a0d436e | |
parent | 26d9d83b8609025595d3849df1eb58c0bc27acd6 (diff) | |
download | perl-59ab9d6e3943e10a4d171dcf5082edc7a5b9e9e5.tar.gz |
[perl #90648] perlop: There is no low-prec //
-rw-r--r-- | pod/perlop.pod | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 4bf208b5db..16a0580f30 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -941,9 +941,9 @@ expressions. It's equivalent to C<&&> except for the very low precedence. This means that it short-circuits: the right expression is evaluated only if the left expression is true. -=head2 Logical or, Defined or, and Exclusive Or +=head2 Logical or and Exclusive Or X<operator, logical, or> X<operator, logical, xor> -X<operator, logical, defined or> X<operator, logical, exclusive or> +X<operator, logical, exclusive or> X<or> X<xor> Binary "or" returns the logical disjunction of the two surrounding @@ -973,6 +973,8 @@ Then again, you could always use parentheses. Binary "xor" returns the exclusive-OR of the two surrounding expressions. It cannot short-circuit (of course). +There is no low precedence operator for defined-OR. + =head2 C Operators Missing From Perl X<operator, missing from perl> X<&> X<*> X<typecasting> X<(TYPE)> |