summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorDavid Golden <dagolden@cpan.org>2010-09-07 20:26:38 -0400
committerDavid Golden <dagolden@cpan.org>2010-09-07 20:35:34 -0400
commita5ce339cb0c533c90d1033581bf794417d495928 (patch)
tree3698e158877790daca221dbc712883022e80b9e2 /pod
parent87f718f15c8a57e274b2507ba40e4bd0857529ea (diff)
downloadperl-a5ce339cb0c533c90d1033581bf794417d495928.tar.gz
perlfunc: list each/keys/values as ARRAY functions
As of Perl 5.12.0, the each(), keys() and values() functions also operate on arrays, but were not listed in the table of contents section titled "Functions for real @ARRAYs". This patch fixes that oversight. The delete() and exists() functions were not added, as their use on array elements has been deprecated.
Diffstat (limited to 'pod')
-rw-r--r--pod/perlfunc.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 9d504b0d92..22d23b325c 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -125,7 +125,7 @@ C<sin>, C<sqrt>, C<srand>
=item Functions for real @ARRAYs
X<array>
-C<pop>, C<push>, C<shift>, C<splice>, C<unshift>
+C<each>, C<keys>, C<pop>, C<push>, C<shift>, C<splice>, C<unshift>, C<values>
=item Functions for list data
X<list>