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

2006-09-13 Thread Darren Duncan
At 11:07 AM -0700 9/12/06, [EMAIL PROTECTED] wrote: +=head1 Cross operators + +The final metaoperator is the CX metaoperator. It applies the +modified operator across all permutations of its list arguments. All +CX operators are of list infix precedence, and are list associative. AT LAST! I

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

2006-09-13 Thread Miroslav Silovic
[EMAIL PROTECTED] wrote: +=head1 Cross operators + +The final metaoperator is the CX metaoperator. It applies the +modified operator across all permutations of its list arguments. All +CX operators are of list infix precedence, and are list associative. + +The bare form of CX is considered an

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

2006-09-13 Thread Daniel Hulme
svn log, speaking on larry's behalf (): +The string concatenating form is: + +a b X~X 1 2 # 'a1', 'a2', 'b1', 'b2' + +The CX~X operator desugars to something like: + +[~]�( a b X 1 2 ) # 'a1', 'a2', 'b1', 'b2' ^ If the CX variant already

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

2006-09-13 Thread Carl Mäsak
Daniel (), Carl (), svn log, speaking on larry's behalf (): +The string concatenating form is: + +a b X~X 1 2 # 'a1', 'a2', 'b1', 'b2' + +The CX~X operator desugars to something like: + +[~]�( a b X 1 2 ) # 'a1', 'a2', 'b1', 'b2' ^ If the

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

2006-09-13 Thread larry
Author: larry Date: Wed Sep 13 07:03:51 2006 New Revision: 11976 Modified: doc/trunk/design/syn/S03.pod Log: typo spotted by Carl Mäsak++ Modified: doc/trunk/design/syn/S03.pod == --- doc/trunk/design/syn/S03.pod

Re: Unpacking tree node parameters

2006-09-13 Thread Audrey Tang
在 Sep 4, 2006 2:11 AM 時,Gaal Yahas 寫到: Unless I'm mistaken, this doesn't cast back to subroutine signature land very well: sub f1 (Dog ($fido, $spot)) { ... } sub f2 (Dog $ ($fido, $spot)) { ... } sub f3 (Dog :($fido, $spot)) { ... } Correct. Unless Audrey's latest

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

2006-09-13 Thread larry
Author: larry Date: Wed Sep 13 11:05:34 2006 New Revision: 11977 Modified: doc/trunk/design/syn/S02.pod doc/trunk/design/syn/S03.pod doc/trunk/design/syn/S06.pod doc/trunk/design/syn/S09.pod doc/trunk/design/syn/S12.pod Log: Metamethod revamp. Modified:

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

2006-09-13 Thread Darren Duncan
At 11:05 AM -0700 9/13/06, [EMAIL PROTECTED] wrote: Modified: doc/trunk/design/syn/S02.pod +'x'.HOW.get_method_list; # get available methods for strings snip Modified: doc/trunk/design/syn/S12.pod +The C.HOW.getmethods method returns method-descriptors containing: As you can see, there

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

2006-09-13 Thread larry
Author: larry Date: Wed Sep 13 15:20:27 2006 New Revision: 11978 Modified: doc/trunk/design/syn/S12.pod Log: Clarified that interogative methods are also named unaries. Modified: doc/trunk/design/syn/S12.pod == ---

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

2006-09-13 Thread larry
Author: larry Date: Wed Sep 13 17:36:38 2006 New Revision: 11979 Modified: doc/trunk/design/syn/S02.pod doc/trunk/design/syn/S12.pod Log: regularized metaobject method names as requested by dduncan++ Modified: doc/trunk/design/syn/S02.pod