summaryrefslogtreecommitdiff
path: root/pod/perltie.pod
diff options
context:
space:
mode:
authorZsbán Ambrus <ambrus@math.bme.hu>2013-09-10 15:02:56 +1000
committerTony Cook <tony@develop-help.com>2013-09-16 14:49:42 +1000
commitbf5513e0d04f91b1dcc9eff3abedc8042910ae75 (patch)
treea518d906e850923c6d3a721838d76051ead16d0d /pod/perltie.pod
parent6a67a7970d132af67307ff5a3a833c95d5b092cc (diff)
downloadperl-bf5513e0d04f91b1dcc9eff3abedc8042910ae75.tar.gz
[perl #77680] perlsub pointers to sub names used by perl itself
Tony Cook: convert from a diff to a commit
Diffstat (limited to 'pod/perltie.pod')
-rw-r--r--pod/perltie.pod3
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perltie.pod b/pod/perltie.pod
index 887f2f02ed..a200accb7b 100644
--- a/pod/perltie.pod
+++ b/pod/perltie.pod
@@ -195,7 +195,8 @@ TIESCALAR classes are certainly possible.
X<array, tying>
A class implementing a tied ordinary array should define the following
-methods: TIEARRAY, FETCH, STORE, FETCHSIZE, STORESIZE and perhaps UNTIE and/or DESTROY.
+methods: TIEARRAY, FETCH, STORE, FETCHSIZE, STORESIZE, CLEAR
+and perhaps UNTIE and/or DESTROY.
FETCHSIZE and STORESIZE are used to provide C<$#array> and
equivalent C<scalar(@array)> access.