On Sun, 2004-09-26 at 09:59, Austin Ziegler wrote:
> On Mon, 27 Sep 2004 00:32:01 +0900, Brian Candler <b.candler / pobox.com> wrote:
> > How do people feel about
> > 
> >   myhash.each{|key,value| ... }
> > 
> > raising an ArgumentError, forcing you to rewrite it as
> > 
> >   myhash.each{|(key,value)| ... }
> > 
> 
> -1
> 
> I can't stand the |(...)| notation.

     I'm not crazy about it myself, though I suspect my prefered
alternative:

      myhash.each  {|[key,value]| ... }

may be as objectionable to you.  In any case, it appears to be a red
herring (see my response to Brian).

-- Markus