On Mon, May 07, 2001 at 05:35:53PM -0400, John Porter wrote:
> Edward Peschko wrote:
> > If 
> >     %a = @b;
> > does 
> > %c = map{ ($_ => undef ) }  @a;
> 
> Yep... particularly considering something neat like
> 
>       keys(%a) = @b;

And what is wrong with

  @a{@b} = ();

which I use all the time. But I guess in perl6 that would
be written as

  %a{@b} = ();

Graham.

Reply via email to