RE: How Decompose Hash of Arrays

2002-02-08 Thread Hewlett Pickens
>>what are you doing?!?!? shouldn't it be: >>for my $hewArray (keys %hashStats) >> { >> print "@$hewArray @$hashStats{$hewArray} \n"; >> } I was blindly copying from the book (once get something to work, then go back and tr

RE: How Decompose Hash of Arrays

2002-02-08 Thread Nikola Janceski
- From: Hewlett Pickens [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 3:16 PM To: Balint, Jess Cc: zPerl Beginners Subject: RE: How Decompose Hash of Arrays That was one of the tries I'd made but not included in my initial post. - print "HewTrace004 -

RE: How Decompose Hash of Arrays

2002-02-08 Thread Hewlett Pickens
That was one of the tries I'd made but not included in my initial post. - print "HewTrace004 - from 1st for block at top of PP pg 277 \n"; my @hewArray; for $hewArray (keys %hashStats) {

Re: How Decompose Hash of Arrays

2002-02-08 Thread Randal L. Schwartz
> "Hewlett" == Hewlett Pickens <[EMAIL PROTECTED]> writes: Hewlett> After creating a "Hash of Arrays", how can I later access the individual Hewlett> elements of the Array values? ... Hewlett> unless (dbmopen %hashStats, $dbStats, 0666) You can't trivially place references into a DBM. Se