Author: moritz
Date: 2009-04-03 00:48:07 +0200 (Fri, 03 Apr 2009)
New Revision: 26063
Modified:
docs/Perl6/Spec/S32-setting-library/Str.pod
Log:
[S32/Str] spec Str.trim()
Modified: docs/Perl6/Spec/S32-setting-library/Str.pod
===
Larry Wall wrote:
On Wed, Apr 01, 2009 at 08:40:12AM -0700, Dave Whipp wrote:
That said, the semantics of a chained relop really should work correctly
for this. If you only reference a junction once in an expression, then
it should behave as such: {a
Yes, that is the intent. I consi
Martin Kealey wrote:
> On Tue, 31 Mar 2009, Jon Lang wrote:
>> Another issue: what happens if conditional code mutates a junction
>> that it filtered? For example:
>>
>> $x = any (-5 .. 5);
>> if $x > 0 { $x++ };
>>
>> At this point, which of the following does $x equal?
>>
>> any(-4 .