[perl #123760] [NYI] allow constant string argument in .comb in Rakudo

2015-08-27 Thread Will Coleda via RT
On Sun Feb 08 08:25:26 2015, masak wrote: > m: say "foo".comb(/o/) > rakudo-moar d9f58f: OUTPUT«o o␤» > m: say "foo".comb('o') > rakudo-moar d9f58f: OUTPUT«Cannot call 'comb' [...]» > * masak suggests the latter form work, too > reason: I saw some code I had written where I had a regex with >

[perl #123760] [NYI] allow constant string argument in .comb in Rakudo

2015-02-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #123760] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123760 > m: say "foo".comb(/o/) rakudo-moar d9f58f: OUTPUT«o o␤» m: say "foo".comb('o') rakudo