[perl #125454] [BUG] Deprecation warning when using "pipe" builtin is telling user to use "pipe" builtin instead in Rakudo

2015-06-22 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #125454] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125454 > $ perl6 -v This is perl6 version 2015.06-36-g164f1e0 built on MoarVM version 2015.06-16-g

[perl #125455] Behaviour of variable phasers LTA in class definition:

2015-06-22 Thread via RT
# New Ticket Created by Jonathan Stowe # Please include the string: [perl #125455] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125455 > Hi, class A { my $boo will leave { say "leaving boo" }; } gives rise to: Metho

Re: [perl #125454] [BUG] Deprecation warning when using "pipe" builtin is telling user to use "pipe" builtin instead in Rakudo

2015-06-22 Thread Elizabeth Mattijsen
At least temporarily fixed with eb398889b191d8624989 Liz === > On 22 Jun 2015, at 11:25, Carl Mäsak (via RT) > wrote: > > # New Ticket Created by "Carl Mäsak" > # Please include the string: [perl #125454] > # in the subject line of all future correspondence about this issue.

Re: [perl #125455] Behaviour of variable phasers LTA in class definition:

2015-06-22 Thread Elizabeth Mattijsen
> On 22 Jun 2015, at 11:41, Jonathan Stowe (via RT) > wrote: > > # New Ticket Created by Jonathan Stowe > # Please include the string: [perl #125455] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=125455 > > > > Hi, >

Rationalizing numeric types

2015-06-22 Thread yary
Thinking over my programming career, there were a few occasions I had to spend time working around floating point errors, and it was a nuisance. There were even fewer times when I worked with transcendental numbers- programs dealing with geometry or tones or logarithmic scales- and those times, flo

Re: Rationalizing numeric types

2015-06-22 Thread Solomon Foster
Yary, There already is a Perl 6 continue fractions module. Spoiler alert: it doesn't work in the least. But I'd be happy to give you a commit bit. I don't think we should even begin to think about including something like that in the Perl 6 core before we have a complete, working implementation

Re: Language design

2015-06-22 Thread Darren Duncan
On 2015-06-16 2:15 PM, The Sidhekin wrote: On Tue, Jun 16, 2015 at 10:52 PM, Michael Zedeler wrote: ...and unpredictable performance is a cost you're willing to pay? I don't write performance-critical applications, but even if I did, why would I prefer getting the wrong answer faster?

[perl #125457] @array:delete last element, adding another after restores deleted element incorrectly

2015-06-22 Thread via RT
# New Ticket Created by hanenkamp # Please include the string: [perl #125457] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125457 > 03:13 < zostay_> m: my @a = 1, 2, 3; @a[2] :delete; @a.perl.say; @a[3] = 4; @a.perl.say;