Brian,
The snag is this:
> my @a = (1, (2,3), 4);
[1 (2 3) 4]
I asked for a List, but got given an Array. So I can do this:
> (1, (2,3), 4).flat;
(1 2 3 4)
but not this:
> @a.flat;
(1 (2 3) 4)
And now @a.flat is a list. But if I assign the result to @b then this
happens:
> my @b = @a.flat;
[
On 29/12/2015 23:05, Timo Paulssen via RT wrote:
On 12/29/2015 12:46 AM, Jules Field (via RT) wrote:
# New Ticket Created by Jules Field
# Please include the string: [perl #127064]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html