In perl.git, the branch maint-5.12 has been updated <http://perl5.git.perl.org/perl.git/commitdiff/4ffae9cec64e9dd4150c249b8d63bdceb4e65fb2?hp=dd885b5817deb1a8363f3336897bc364bcf2882b>
- Log ----------------------------------------------------------------- commit 4ffae9cec64e9dd4150c249b8d63bdceb4e65fb2 Author: Zsbán Ambrus <[email protected]> Date: Mon Oct 18 14:53:49 2010 -0700 Add keys(@a) and values(@a) to perl5123delta since it was missed in 5.12.0 ----------------------------------------------------------------------- Summary of changes: pod/perl5123delta.pod | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/pod/perl5123delta.pod b/pod/perl5123delta.pod index 9f6347d..03ca0f9 100644 --- a/pod/perl5123delta.pod +++ b/pod/perl5123delta.pod @@ -34,6 +34,13 @@ XXX New core language features go here. Summarise user-visible core language enhancements. Particularly prominent performance optimisations could go here, but most should go in the L</Performance Enhancements> section. +=head2 C<keys>, C<values> work on arrays + +You can now use the C<keys>, C<values>, C<each> builtin functions on arrays +(previously you could only use them on hashes). See L<perlfunc> for details. +This is actually a change introduced in perl 5.12.0, but it was missed from +that release's perldelta. + =head1 New Platforms XXX List any platforms that this version of perl compiles on, that previous -- Perl5 Master Repository
