Re: [perl #133541] Grammer bug vs

2018-09-27 Thread Brandon Allbery
"_" is not an alphabetic character. It's allowed in "alnum" because that is by intent what is \w in other regex implementations, which includes "_". On Thu, Sep 27, 2018 at 10:47 PM Vijayvithal wrote: > # New Ticket Created by Vijayvithal > # Please include the string: [perl #133541] > # in th

Re: [perl #133541] Grammer bug vs

2018-09-27 Thread Brandon Allbery via RT
"_" is not an alphabetic character. It's allowed in "alnum" because that is by intent what is \w in other regex implementations, which includes "_". On Thu, Sep 27, 2018 at 10:47 PM Vijayvithal wrote: > # New Ticket Created by Vijayvithal > # Please include the string: [perl #133541] > # in th

[perl #133541] Grammer bug vs

2018-09-27 Thread via RT
# New Ticket Created by Vijayvithal # Please include the string: [perl #133541] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=133541 > In the attached code, the only difference between the Grammars G0 and G1 is the defination

Re: Could this be any more obscure?

2018-09-27 Thread Alessandro Costantini
> Il giorno 26 set 2018, alle ore 08:57, Todd Chester > ha scritto: > > Hi All, > > Over on >https://docs.perl6.org/routine/words > I see > > multi method words(Str:D $input: $limit = Inf --> Positional) $input is the method invocant (hence the “:”) constrained to a defined string ob

Re: Could this be any more obscure?

2018-09-27 Thread Brad Gilbert
In Perl 6 most normal operators are subroutines: @a[1..3] &postcircumfix:« [ ] »( @a,1..3 ) # same as above Since they are just subroutines they often just call something else. # an overly simplified version sub postcircumfix:« [ ] » ( @array, **@indicies ) { gather

Re: Could this be any more obscure?

2018-09-27 Thread Laurent Rosenfeld via perl6-users
> I am NOT asking it to limit my request to Infinity. Yes you are, implicitly. If you don't pass any parameter for $limit, $limit will take the default value supplied by the signature, i.e. Inf. Le jeu. 27 sept. 2018 à 02:48, ToddAndMargo a écrit : > On 9/26/18 4:33 PM, The Sidhekin wrote: >