Re: [perl #63796] [PATCH] Add Perl6 versions of ucfirst, lcfirst, chop and fmt to Any.pm

2009-03-12 Thread Patrick R. Michaud
On Wed, Mar 11, 2009 at 07:49:16PM -0700, Cory Spencer wrote: +our Str multi method lcfirst is export { +self ?? self.substr(0,1).lc ~ self.substr(1) !! "" +} + +our Str multi method ucfirst is export { +self ?? self.substr(0,1).uc ~ self.substr(1) !! "" +} We need

[perl #63796] [PATCH] Add Perl6 versions of ucfirst, lcfirst, chop and fmt to Any.pm

2009-03-12 Thread via RT
# New Ticket Created by Cory Spencer # Please include the string: [perl #63796] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=63796 > This patch removes the PIR implementations of ucfirst, lcfirst, chop and fmt from any