Dear Mr. Bach,
You were indeed correct so I wrapped the %hash like this
"@{%hash}" like you would to de-refrence an array and it worked
perfectly. It was indeed just me.
Thanks to everyone that responded!
Chris
On 5/23/06, Andy_Bach@wiwb.uscourts.gov <Andy_Bach@wiwb.uscourts.gov> wrote:
> Oh, I just saw some discussion about the flatten op and:
> for %hash.sort.keys -> my $key {
> my @total = [,] %hash{$key};
>
> maybe, would be the unroll or:
> for %hash.sort.keys -> my $key {
> my @total = ( %hash{$key} );
>
> or
> for %hash.sort.keys -> my $key {
> my (@total) = %hash{$key};
>
> perhaps?
>
> a
>
> Andy Bach, Sys. Mangler
> Internet: andy_bach@wiwb.uscourts.gov
> VOICE: (608) 261-5738 FAX 264-5932
>
> "It's a summons."
> "What's a summons?"
> "It means summon's in trouble."
> -- Rocky and Bullwinkle
>
Thread Previous
|
Thread Next