On Wed, Oct 30, 2002 at 12:48:21PM -0800, Dave Storrs wrote:
> Current:      for @a; @b -> $x is rw, $y; $z { ...stuff... };
> 
> The above (IIUC) means "loop over @a, pulling out two elements at a time
> and aliasing them to $x (which is rw) and $y (which is r).
> Simultaneously loop over @b, aliasing its elements to $z (which is r)."
> 
> Suggested:    for @a -> $x, $y> __ @b -> $z> { ...stuff... };

Just as a data point, I find yours harder to read.

-Scott
-- 
Jonathan Scott Duff
[EMAIL PROTECTED]

Reply via email to