Re: lvalue hash slice
Ronald J Kimball <[email protected]>
| Newsgroups | gmane.comp.lang.perl.fun |
|---|---|
| Message-ID | <[email protected]> |
On Tue, Sep 30, 2003 at 11:07:24PM +0300, Gaal Yahas wrote:
> I like hash slices:
>
> ($one, $two, $three) = @hash{ qw/aaa bbb ccc/ };
>
> Sadly, this doesn't work as an lvalue:
>
> @hash{ qw/aaa bbb ccc/ } = ($one, $two, $three); # WRONG
That actually does work.
Ronald