[perl6/specs] d00c44: notional karma

2016-03-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: d00c44bb2ae2e3c0eacf03972fefb59a34a3a8a7 https://github.com/perl6/specs/commit/d00c44bb2ae2e3c0eacf03972fefb59a34a3a8a7 Author: Stéphane Payrard Date: 2016-03-24 (Thu, 24 Mar 2016) Changed paths: M S

[perl6/specs] bd4686: unmanaged size. jnthn++

2016-03-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: bd468647d355eb6f50524426615bbc6ea9bc3c78 https://github.com/perl6/specs/commit/bd468647d355eb6f50524426615bbc6ea9bc3c78 Author: Stéphane Payrard Date: 2016-03-24 (Thu, 24 Mar 2016) Changed paths: M S

Re: [perl #127778] negative $n in “combinations” (combinations -999999999999999999, 2)

2016-03-25 Thread Elizabeth Mattijsen
Fixed with f220a5edc0694751a585 , tests are still needed. > On 24 Mar 2016, at 21:49, Alex Jakimenko (via RT) > wrote: > > # New Ticket Created by Alex Jakimenko > # Please include the string: [perl #127778] > # in the subject line of all future correspondence about this issue. > # https://

[perl #127784] Assigning multiple values to an array does not work with infinite ranges (@a[^∞] = 42)

2016-03-25 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #127784] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127784 > Let's start with an example that works: Code: my @a; @a[^8] = 5, 6; say @a Result: [5

[perl #127785] where constraint in blockless declaration causes spurious gobbling error

2016-03-25 Thread via RT
# New Ticket Created by Trey Harris # Please include the string: [perl #127785] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127785 > Example: % perl6 -e 'sub MAIN ($x where { $^x > 1 } ) { say "big" }' 4 big % perl6 -e 'su