diff options
author | David Golden <dagolden@cpan.org> | 2010-09-07 20:26:38 -0400 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2010-09-07 20:35:34 -0400 |
commit | a5ce339cb0c533c90d1033581bf794417d495928 (patch) | |
tree | 3698e158877790daca221dbc712883022e80b9e2 /pod | |
parent | 87f718f15c8a57e274b2507ba40e4bd0857529ea (diff) | |
download | perl-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.pod | 2 |
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> |