diff options
author | Ricardo Signes <rjbs@cpan.org> | 2014-02-21 22:25:19 -0500 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2014-03-05 20:39:59 -0500 |
commit | cc08d69f51c86cbd5787050beb51daf9bfa5c373 (patch) | |
tree | 556121cabcd9da04ff22c28d4898391b645f6c1f /pod/perlop.pod | |
parent | c81312344d76c641ca7b83158c1429e8349c28f0 (diff) | |
download | perl-cc08d69f51c86cbd5787050beb51daf9bfa5c373.tar.gz |
note that the ~~ operator is experimental
(cherry picked from commit 43c6e0a7ba1950c4a64b59be5d0a9cd7b1807cca)
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 4b719895f3..3cb64e995c 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -517,7 +517,9 @@ First available in Perl 5.10.1 (the 5.10.0 version behaved differently), binary C<~~> does a "smartmatch" between its arguments. This is mostly used implicitly in the C<when> construct described in L<perlsyn>, although not all C<when> clauses call the smartmatch operator. Unique among all of -Perl's operators, the smartmatch operator can recurse. +Perl's operators, the smartmatch operator can recurse. The smartmatch +operator is L<experimental|perlpolicy/experimental> and its behavior is +subject to change. It is also unique in that all other Perl operators impose a context (usually string or numeric context) on their operands, autoconverting |