Re: [perl #127121] [BUG] flat can't flatten arrays, but can flatten lists

2016-01-04 Thread Jules Field
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; [

Re: [perl #127064] Variable interpolation in regex very slow

2015-12-31 Thread Jules Field
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