Re: [perl #127125] Decent sqrt() - makes sqrt(-1+0i) == i

2016-01-02 Thread Elizabeth Mattijsen
> On 02 Jan 2016, at 20:46, Dan Kogai (via RT) > wrote: > > # New Ticket Created by Dan Kogai > # Please include the string: [perl #127125] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=127125 > > > > I am glad perl6 s

Re: [perl #127126] [PATCH] Decent sqrt() - makes sqrt(-1+0i) == i

2016-01-02 Thread Elizabeth Mattijsen
> On 02 Jan 2016, at 20:54, Dan Kogai (via RT) > wrote: > > # New Ticket Created by Dan Kogai > # Please include the string: [perl #127126] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=127126 > > > > Oops, the previou

[perl #127126] [PATCH] Decent sqrt() - makes sqrt(-1+0i) == i

2016-01-02 Thread via RT
# New Ticket Created by Dan Kogai # Please include the string: [perl #127126] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127126 > Oops, the previous message does not contain the patch so I am submitting again. Use the pa

[perl #127125] Decent sqrt() - makes sqrt(-1+0i) == i

2016-01-02 Thread via RT
# New Ticket Created by Dan Kogai # Please include the string: [perl #127125] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127125 > I am glad perl6 supports complex numbers natively. What I am not glad is that its definitio

[perl6/specs] 71d0c0: [S32::Containers] Change duplicate =item of `pairs...

2016-01-02 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 71d0c0c1fa672054f0da3409b742653b5bd92b3a https://github.com/perl6/specs/commit/71d0c0c1fa672054f0da3409b742653b5bd92b3a Author: Bruce Gray Date: 2016-01-02 (Sat, 02 Jan 2016) Changed paths: M S32-set

[perl #127127] Usability of the Perl 6 Advent Calendar theme

2016-01-02 Thread via RT
# New Ticket Created by Christopher Matlak # Please include the string: [perl #127127] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127127 > (Please let me know if there's a better place to send this to) I was looking into

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

2016-01-02 Thread via RT
# New Ticket Created by Jules Field # Please include the string: [perl #127121] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127121 > flat has no effect on arrays, but works fine on lists: > ((1,2),3).flat.perl (1, 2, 3).Se

[perl #127129] Rakudo confused by multi methods + multiple roles

2016-01-02 Thread via RT
# New Ticket Created by David Warring # Please include the string: [perl #127129] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127129 > $ cat > tst.pl role R1 { multi method foo(42) {} multi method foo(69) {} } rol

Re: [perl #127107] "duplicate definition of symbol grammar" using Grammar::Tracer in .pm6 file

2016-01-02 Thread Elizabeth Mattijsen
> On 31 Dec 2015, at 13:47, Faye (via RT) wrote: > > # New Ticket Created by Faye > # Please include the string: [perl #127107] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=127107 > > > > $ cat Foo.pm6 > use Grammar::T

Re: [perl #127093] gist missing for non-native typed array that doesn't get initialized

2016-01-02 Thread Elizabeth Mattijsen
> On 30 Dec 2015, at 19:41, Leandro Hermida (via RT) > wrote: > > # New Ticket Created by Leandro Hermida > # Please include the string: [perl #127093] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=127093 > > > >> my @

Re: [perl #127112] .wrap doesn't work for routines declared in roles

2016-01-02 Thread Lloyd Fournier
Hey Liz, Sorry this was a case of me golfing something down then not explaining the .WHY of what I was originally doing. This is what I was trying to achieve. multi trait_mod:(Routine:D $meth,:$baz!) { $meth.wrap( -> \SELF,$subj {}); }; role Foo { method foo is baz { }; } Obviously tra

Re: [perl #127112] .wrap doesn't work for routines declared in roles

2016-01-02 Thread Elizabeth Mattijsen
> On 01 Jan 2016, at 17:49, Lloyd Fournier (via RT) > wrote: > > # New Ticket Created by Lloyd Fournier > # Please include the string: [perl #127112] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=127112 > > > > role F

Re: [perl #127112] AutoReply: .wrap doesn't work for routines declared in roles

2016-01-02 Thread Lloyd Fournier
I golfed this down to: p6 -e 'role {sub foo {}; BEGIN &foo.clone() }' ===SORRY!=== Error while compiling -e An exception occurred while evaluating a BEGIN at -e:1 Exception details: ===SORRY!=== Error while compiling Cannot invoke this object at : For reasons I don't quite understand it's

Re: Recalling previous commands

2016-01-02 Thread Kaare Rasmussen
Hi Linenoise is included in Task::Star. https://github.com/tadzik/Task-Star/commit/8ff101ae15 So it's strange I had to install it after I installed rakudo, panda, and Task::Star. I guess things aren't really streamlined to perfection yet. /kaare