[perl #130863] [LTA][BUG] Cannot extract partially dimensioned view of array from fixed-size array

2017-03-04 Thread Zoffix Znet via RT
On Sat, 25 Feb 2017 22:06:29 -0800, cookbook_...@yahoo.co.jp wrote: > See the following example: > > $ perl6 -e 'my @a; @a = [[1, 2], [3, 4]]; @a[0;*].say;' > (1 2) > > $ perl6 -e 'my @a[2;2]; @a = [[1, 2], [3, 4]]; @a[0;*].say;' > Partially dimensioned views of arrays not yet implemented.

[perl #130863] [LTA][BUG] Cannot extract partially dimensioned view of array from fixed-size array

2017-03-04 Thread Zoffix Znet via RT
On Sat, 25 Feb 2017 22:06:29 -0800, cookbook_...@yahoo.co.jp wrote: > See the following example: > > $ perl6 -e 'my @a; @a = [[1, 2], [3, 4]]; @a[0;*].say;' > (1 2) > > $ perl6 -e 'my @a[2;2]; @a = [[1, 2], [3, 4]]; @a[0;*].say;' > Partially dimensioned views of arrays not yet implemented.

Re: [perl #130863] [LTA][BUG] Cannot extract partially dimensioned view of array from fixed-size array

2017-02-26 Thread Elizabeth Mattijsen via RT
> On 26 Feb 2017, at 07:06, Itsuki Toyota (via RT) > wrote: > > # New Ticket Created by Itsuki Toyota > # Please include the string: [perl #130863] > # in the subject line of all future correspondence about this issue. > #

Re: [perl #130863] [LTA][BUG] Cannot extract partially dimensioned view of array from fixed-size array

2017-02-26 Thread Elizabeth Mattijsen
> On 26 Feb 2017, at 07:06, Itsuki Toyota (via RT) > wrote: > > # New Ticket Created by Itsuki Toyota > # Please include the string: [perl #130863] > # in the subject line of all future correspondence about this issue. > #

[perl #130863] [LTA][BUG] Cannot extract partially dimensioned view of array from fixed-size array

2017-02-25 Thread via RT
# New Ticket Created by Itsuki Toyota # Please include the string: [perl #130863] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130863 > See the following example: $ perl6 -e 'my @a; @a = [[1, 2], [3, 4]]; @a[0;*].say;' (1