diff options
author | Zefram <zefram@fysh.org> | 2011-09-09 23:27:16 +0100 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2011-09-09 23:30:02 +0100 |
commit | e1dccc0d34a90e3511bfed596be9d78128ca7ee7 (patch) | |
tree | 1e72ad2098f66ac1c59debfc46c00d1013fc0a9f /lib | |
parent | 0b31f5359876e6c0b203006714db218d7b441cd1 (diff) | |
download | perl-e1dccc0d34a90e3511bfed596be9d78128ca7ee7.tar.gz |
remove index offsetting ($[)
$[ remains as a variable. It no longer has compile-time magic.
At runtime, it always reads as zero, accepts a write of zero, but dies
on writing any other value.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Tie/Array.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Tie/Array.pm b/lib/Tie/Array.pm index 4e980a81fc..767cfdd77a 100644 --- a/lib/Tie/Array.pm +++ b/lib/Tie/Array.pm @@ -3,7 +3,7 @@ package Tie::Array; use 5.006_001; use strict; use Carp; -our $VERSION = '1.04'; +our $VERSION = '1.05'; # Pod documentation after __END__ below. @@ -277,9 +277,6 @@ There is no support at present for tied @ISA. There is a potential conflict between magic entries needed to notice setting of @ISA, and those needed to implement 'tie'. -Very little consideration has been given to the behaviour of tied arrays -when C<$[> is not default value of zero. - =head1 AUTHOR Nick Ing-Simmons E<lt>nik@tiuk.ti.comE<gt> |