[perl #131790] [BUG] :delete silently fails on lazy Arrays

2018-03-14 Thread Jan-Olof Hendig via RT
On Mon, 24 Jul 2017 09:09:55 -0700, c...@zoffix.com wrote: > m: my @a is default(42) = 1...*; @a[1]:delete; say @a[1]:exists; .say > for @a[^10] > rakudo-moar 2fb8c7: OUTPUT: «True␤1␤2␤3␤4␤5␤6␤7␤8␤9␤10␤» > > Expected: reify until `1`, delete it, and have `@a[1]:exists` give > False, and `.say for

[perl #131790] [BUG] :delete silently fails on lazy Arrays

2017-07-24 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131790] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131790 > m: my @a is default(42) = 1...*; @a[1]:delete; say @a[1]:exists; .say for @a[^10] rakudo-