Re: WTF? - Re: method calls on $self

2005-07-12 Thread Aankhen
Surely there is a viable alternative that doesn't involve outlawing it? Aankhen

Re: WTF? - Re: method calls on $self

2005-07-14 Thread Aankhen
people squirm every time I change my mind. Well, you've certainly got everyone flustered enough that they'll be overjoyed even if you pick the alternative they hated the most... :-) Aankhen

Re: Database Transactions and STM [was: Re: STM semantics, the Transactional role]

2005-07-18 Thread Aankhen
}; Shouldn't that `CATCH` block be within the `atomic` block? Or did I miss something? Aankhen

Re: Messing with the type heirarchy

2005-07-27 Thread Aankhen
[sorry Luke, I hit "Send" too soon] On 7/27/05, Luke Palmer <[EMAIL PROTECTED]> wrote: > > There is probably a better word than "contains". I was thinking set > > theory when I came up with that one. What about "derives"? Aankhen

Re: lazy list syntax?

2005-07-29 Thread Aankhen
On 7/29/05, Flavio S. Glock <[EMAIL PROTECTED]> wrote: > Is "for =" only for filehandles? I tried: No, it's for anything that supports iteration... `=$foo` == `$foo.next()`, if I recall correctly. It's probably not yet implemented. Aankhen

Re: $arrayref.ref?

2005-07-30 Thread Aankhen
you check if something is a ref? `if (tied($foo))`? Aankhen

Re: Do slurpy parameters auto-flatten arrays?

2005-08-03 Thread Aankhen
pecify an unflattened array or a hash in a sub call without any special syntax... Aankhen

Re: numification and stringification of objects

2005-09-26 Thread Aankhen
ll it the wtf operator. No, please... how about just calling it the interrobang operator <http://en.wikipedia.org/wiki/Interrobang>? :-D Aankhen

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

2006-02-23 Thread Aankhen
On 23 Feb 2006 14:15:21 -, [EMAIL PROTECTED] > Log: > Typo, plus audrey forgot to increment version. There seems to be another typo on the same line: "just as method like" instead of "just as methods like". Aankhen -- "Why don't you go on a diet!" "Because I like to eat! Is that a crime?"

Re: explicit line termination with ";": why?

2007-05-14 Thread Aankhen
g into your code. -- Aankhen (We have no branches.)

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

2007-06-14 Thread Aankhen
identifies this message object. May be undef as long as the message is begin composed."); .has $content_type = 'text/plain'; } -- Aankhen (We have no branches.)

Re: POD <-> Code entanglement

2007-06-14 Thread Aankhen
few other minor changes. As for XHTML 2.0, that's still a long way off. :-) -- Aankhen (We have no branches.)

Re: using rules

2005-06-05 Thread Aankhen
o ~~ m/$bar := (bar|baz)/; Now $bar will contain either "bar" or "baz", depending on which one was matched. Hope this is helpful. Corrections are welcome from anyone who spots any mistakes. Aankhen