diff options
author | Ricardo Signes <rjbs@cpan.org> | 2015-05-08 19:11:40 -0400 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2015-05-08 20:19:42 -0400 |
commit | eb91097c56fcbc5b66cea97d62fb26a347807e2e (patch) | |
tree | b4f68edd76c80698c1b3151eebec4f6b355be9a3 /lib/overload.pm | |
parent | 0590bd99f192564130ecb2be72b166529801ab6b (diff) | |
download | perl-eb91097c56fcbc5b66cea97d62fb26a347807e2e.tar.gz |
document that we may add more overloaded ops over time
Diffstat (limited to 'lib/overload.pm')
-rw-r--r-- | lib/overload.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/overload.pm b/lib/overload.pm index 414c386675..4a1912c236 100644 --- a/lib/overload.pm +++ b/lib/overload.pm @@ -1,6 +1,6 @@ package overload; -our $VERSION = '1.25'; +our $VERSION = '1.26'; %ops = ( with_assign => "+ - * / % ** << >> x .", @@ -383,6 +383,7 @@ hash C<%overload::ops>: Most of the overloadable operators map one-to-one to these keys. Exceptions, including additional overloadable operations not apparent from this hash, are included in the notes which follow. +This list is subject to growth over time. A warning is issued if an attempt is made to register an operator not found above. |