-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'map' returns array instead of list #16044
Comments
From @KES777Created by @KES777The [DOC](https://perldoc.perl.org/functions/map.html) says: map ... evaluates ... and returns the list value but it returns array: $x = ( 1, 7, 5 ); #5 list: last element is returned @array = ( 1, 7, 5 ); $x = map{ $_ } ( 1, 7, 5 ); #EXPECTED: 5 (list), ACTUAL: 3 (array) OUTPUT is: Perl Info
|
From Eirik-Berg.Hanssen@allverden.noOn Sun, Jun 25, 2017 at 2:06 PM, KES <perlbug-followup@perl.org> wrote:
… and goes on to say "In scalar context, returns the total number of
Nope; this is the comma operator in scalar context, returning the RHS @array = ( 1, 7, 5 );
Since map in scalar context is documented to return the "total number of Works as per documentation – no bug, just my particular bugbear, the idea At most I might suggest making the documentation clearer that the return Eirik |
The RT System itself - Status changed from 'new' to 'open' |
From @cpansproutOn Sun, 25 Jun 2017 05:23:34 -0700, Eirik-Berg.Hanssen@allverden.no wrote:
Or what about we eschew ‘value’ and say ‘a list composed of...’? -- Father Chrysostomos |
From @jkeenanOn Sun, 25 Jun 2017 13:08:41 GMT, sprout wrote:
Please review the patch attached. Thank you very much. -- |
From @jkeenan131652-0001-Improve-documentation-of-map.patchFrom f6d32eb695407668bf1f7b5973029574a84b31f2 Mon Sep 17 00:00:00 2001
From: James E Keenan <jkeenan@cpan.org>
Date: Fri, 7 Jul 2017 19:59:47 -0400
Subject: [PATCH] Improve documentation of 'map'.
Per discussion in RT # 131652.
---
pod/perlfunc.pod | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index b1e4ac2..dadb3d0 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -4071,12 +4071,11 @@ X<map>
=for Pod::Functions apply a change to a list to get back a new list with the changes
Evaluates the BLOCK or EXPR for each element of LIST (locally setting
-L<C<$_>|perlvar/$_> to each element) and returns the list value composed
-of the
-results of each such evaluation. In scalar context, returns the
-total number of elements so generated. Evaluates BLOCK or EXPR in
-list context, so each element of LIST may produce zero, one, or
-more elements in the returned value.
+L<C<$_>|perlvar/$_> to each element) and composes a list of the results of
+each such evaluation. Each element of LIST may produce zero, one, or more
+elements in the generated list, so the number of elements in the generated
+list may differ from that in LIST. In scalar context, returns the total
+number of elements so generated. In list context, returns the generated list.
my @chars = map(chr, @numbers);
--
2.7.4
|
From @cpansproutOn Fri, 07 Jul 2017 17:02:05 -0700, jkeenan wrote:
+one -- Father Chrysostomos |
From @jkeenanOn Sat, 08 Jul 2017 01:28:06 GMT, sprout wrote:
P5P: Any further comments on this documentation patch? I am taking this ticket for the purpose of applying the patch within 7 days unless there is a valid objection. Thank you very much. -- |
From @davidnicolthis is a fine example of how "array" and "list" appear to be used that said I think the patch is great. -- |
From @jkeenanOn Tue, 11 Jul 2017 14:50:23 GMT, jkeenan wrote:
Applied to blead in commit e1d3549; marking ticket Resolved. Thank you very much. -- |
@jkeenan - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#131652 (status was 'resolved')
Searchable as RT131652$
The text was updated successfully, but these errors were encountered: