diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-29 02:50:04 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-29 02:50:04 +0000 |
commit | 6f149447298e87ab4470e9b05cfcd08d11db1834 (patch) | |
tree | e718ca92d1311deaa87459e208b43eb296e96737 /pod/perltie.pod | |
parent | 1937ada3708389a39348e1b429b4966ae618dd80 (diff) | |
download | perl-6f149447298e87ab4470e9b05cfcd08d11db1834.tar.gz |
One more perltie.pod nit from Casey R. Tweten.
p4raw-id: //depot/perl@7910
Diffstat (limited to 'pod/perltie.pod')
-rw-r--r-- | pod/perltie.pod | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/pod/perltie.pod b/pod/perltie.pod index 1f77f55660..1bba005be5 100644 --- a/pod/perltie.pod +++ b/pod/perltie.pod @@ -463,17 +463,6 @@ just leave it out. =back -The code we presented at the top of the tied array class accesses many -elements of the array, far more than we've set the bounds to. Therefore, -it will blow up once they try to access beyond the 2nd element of @ary, as -the following output demonstrates: - - setting index 0: value of elt 0 now 0 - setting index 1: value of elt 1 now 10 - setting index 2: value of elt 2 now 20 - setting index 3: Array OOB: 3 > 2 at Bounded_Array.pm line 39 - Bounded_Array::FETCH called at testba line 12 - =head2 Tying Hashes Hashes were the first Perl data type to be tied (see dbmopen()). A class |