On Mon Oct 05 10:28:55 2015, jn...@jnthn.net wrote:
> On Fri Nov 07 20:44:27 2014, r...@hoelz.ro wrote:
> > Example:
> >
> > .say for OUTER::OUTER::.values; # a bunch of Mus
> >
> > Shouldn't this be equivalent to my $stash = OUTER::OUTER::; .say for
> > %stash.map({ %stash{$_} })?
>
> Fixed now
On Fri Nov 07 20:44:27 2014, r...@hoelz.ro wrote:
> Example:
>
> .say for OUTER::OUTER::.values; # a bunch of Mus
>
> Shouldn't this be equivalent to my $stash = OUTER::OUTER::; .say for
> %stash.map({ %stash{$_} })?
Fixed now, and test coverage added in S02-names/pseudo.t.
On Fri Nov 07 20:44:27 2014, r...@hoelz.ro wrote:
> Example:
>
> .say for OUTER::OUTER::.values; # a bunch of Mus
>
> Shouldn't this be equivalent to my $stash = OUTER::OUTER::; .say for
> %stash.map({ %stash{$_} })?
I'm not sure that does what you think it does; Fixing the sigil typo, I get:
1
# New Ticket Created by Rob Hoelz
# Please include the string: [perl #123154]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=123154 >
Example:
.say for OUTER::OUTER::.values; # a bunch of Mus
Shouldn't this be equivalent t