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

2008-01-10 Thread larry
Author: larry Date: Thu Jan 10 11:51:20 2008 New Revision: 14484 Modified: doc/trunk/design/syn/S05.pod Log: Added :ii and :bb substitution modifiers as suggested by ruoso++ Modified: doc/trunk/design/syn/S05.pod ==

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

2008-01-10 Thread larry
Author: larry Date: Thu Jan 10 12:28:57 2008 New Revision: 14485 Modified: doc/trunk/design/syn/S05.pod Log: Some clarifications suggested by moritz++ Modified: doc/trunk/design/syn/S05.pod == ---

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

2008-01-10 Thread larry
Author: larry Date: Thu Jan 10 13:16:27 2008 New Revision: 14487 Modified: doc/trunk/design/syn/S02.pod Log: typo Modified: doc/trunk/design/syn/S02.pod == --- doc/trunk/design/syn/S02.pod(original) +++

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

2008-01-10 Thread larry
Author: larry Date: Thu Jan 10 13:05:42 2008 New Revision: 14486 Modified: doc/trunk/design/syn/S02.pod Log: Added some random thoughts about performance implications of grapheme view Modified: doc/trunk/design/syn/S02.pod

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

2008-01-10 Thread larry
Author: larry Date: Thu Jan 10 13:57:41 2008 New Revision: 14488 Modified: doc/trunk/design/syn/S02.pod Log: Another typo, grr Modified: doc/trunk/design/syn/S02.pod == --- doc/trunk/design/syn/S02.pod

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

2008-01-10 Thread larry
Author: larry Date: Thu Jan 10 16:14:53 2008 New Revision: 14489 Modified: doc/trunk/design/syn/S02.pod Log: Clarification requested by moritz++ Modified: doc/trunk/design/syn/S02.pod == ---

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

2008-01-10 Thread Juerd Waalboer
[EMAIL PROTECTED] skribis 2008-01-10 16:14 (-0800): +(Note that C.bytes is not guaranteed to be well-defined when the encoding +is unknown. (This message is a mess; in my defense, it's 5:30 AM here. I just had to respond, because I have the feeling Perl 6's unicode model is going exactly the

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

2008-01-10 Thread Larry Wall
It's really already very much like you want it to be. Most Str objects do not in fact have any byte semantics. If you say foo.bytes, that is shorthand for foo.bytes(:nfc, :encUTF-8). In other words, you have to tell it what units you want the bytes to be measured in. It just assumes utf-8 as a

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

2008-01-10 Thread Darren Duncan
At 11:09 PM -0800 1/10/08, Larry Wall wrote: It's really already very much like you want it to be. Most Str objects do not in fact have any byte semantics. If you say foo.bytes, that is shorthand for foo.bytes(:nfc, :encUTF-8). In other words, you have to tell it what units you want the bytes