[svn:perl6-synopsis] r14552 - doc/trunk/design/syn

2008-06-14 Thread larry
Author: larry Date: Sat Jun 14 17:06:09 2008 New Revision: 14552 Modified: doc/trunk/design/syn/S05.pod Log: this sentence no verb, diakopter++ Modified: doc/trunk/design/syn/S05.pod == --- doc/trunk/design/syn/S05.p

Re: fallback semantics of list methods

2008-06-14 Thread Daniel Ruoso
Sáb, 2008-06-14 às 09:20 -0700, Larry Wall escreveu: > On Sat, Jun 14, 2008 at 01:46:10PM +0200, Moritz Lenz wrote: > : Fallback semantics in S12 suggest that since no matching multi method is > : found, subs are tried - that is, the expression is interpreted as > :join('str', 'other_str') > :

Re: fallback semantics of list methods

2008-06-14 Thread Larry Wall
On Sat, Jun 14, 2008 at 01:46:10PM +0200, Moritz Lenz wrote: : In the test suite and on IRC there was quite some confusion about how : list builtins are specced, and how they should behave in corner cases. : : One is join(): : our Str multi method join ( @values: Str $separator = ' ' ) : our Str m

fallback semantics of list methods

2008-06-14 Thread Moritz Lenz
In the test suite and on IRC there was quite some confusion about how list builtins are specced, and how they should behave in corner cases. One is join(): our Str multi method join ( @values: Str $separator = ' ' ) our Str multi join ( Str $separator = ' ', [EMAIL PROTECTED] ) It is quite clear