[perl #59400] [PATCH] Implementation of lvalue semantic of Str.substr

2010-08-11 Thread Will Coleda via RT
On Sat Sep 27 05:47:14 2008, bacek wrote: > Hello. > > Small proxy class to support lvalue semantic of Str.substr. Holds > original string, start, len. In get_string method returns substring. In > infix:= construct new string and assign it to original. > bacek - this patch predates the migrati

Re: [perl #59400] [PATCH] Implementation of lvalue semantic of Str.substr

2008-09-27 Thread Vasily Chekalkin
Patrick R. Michaud via RT wrote: On Sat, Sep 27, 2008 at 07:25:06AM -0700, Moritz Lenz via RT wrote: On Sat Sep 27 05:47:14 2008, bacek wrote: Small proxy class to support lvalue semantic of Str.substr. Holds original string, start, len. In get_string method returns substring. In infix:= const

[perl #59400] [PATCH] Implementation of lvalue semantic of Str.substr

2008-09-27 Thread via RT
# New Ticket Created by Vasily Chekalkin # Please include the string: [perl #59400] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=59400 > Hello. Small proxy class to support lvalue semantic of Str.substr. Holds original

Re: [perl #59400] [PATCH] Implementation of lvalue semantic of Str.substr

2008-09-27 Thread Patrick R. Michaud
On Sat, Sep 27, 2008 at 07:25:06AM -0700, Moritz Lenz via RT wrote: > On Sat Sep 27 05:47:14 2008, bacek wrote: > > Small proxy class to support lvalue semantic of Str.substr. Holds > > original string, start, len. In get_string method returns substring. In > > infix:= construct new string and as