Re: PATCH: S04 - unary C= is not slurpy

2005-06-15 Thread Autrijus Tang
On Wed, Jun 15, 2005 at 05:37:18PM -0500, Patrick R. Michaud wrote:
 Based on an off-list discussion, it turns out that unary C=
 is not slurpy as mentioned in S04.  The following patch to S04
 corrects this; I've already applied the patch but thought I'd
 pass it by p6l for review/comments/reactions.

Does it mean that it's a synonym to readline?

Thanks,
/Autrijus/


pgpGE4T1lI9Ej.pgp
Description: PGP signature


Re: PATCH: S04 - unary C= is not slurpy

2005-06-15 Thread Damian Conway

Autrijus asked:


On Wed, Jun 15, 2005 at 05:37:18PM -0500, Patrick R. Michaud wrote:


Based on an off-list discussion, it turns out that unary C=
is not slurpy as mentioned in S04.  The following patch to S04
corrects this; I've already applied the patch but thought I'd
pass it by p6l for review/comments/reactions.



Does it mean that it's a synonym to readline?


No. It's the general-purpose iterate this... operator.

Applied to a filehandle, it iterates the filehandle (which *is* equivalent to 
 calling Creadline).


But it can also be applied to any other iterator object, in which case it 
calls that object's C.next method.


Damian