in reply to Re: map-like hash iterator
in thread map-like hash iterator
Maybe this instead:
my $n = keys %$h; for ( my $i = 0; $i < $n; $i++ ) { local( $a, $b ) = each %$h; $c->() }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: map-like hash iterator
by Aristotle (Chancellor) on Nov 06, 2002 at 21:26 UTC | |
by jdporter (Paladin) on Nov 06, 2002 at 21:32 UTC | |
by Aristotle (Chancellor) on Nov 06, 2002 at 23:19 UTC | |
by jdporter (Paladin) on Nov 07, 2002 at 00:12 UTC | |
by Aristotle (Chancellor) on Nov 07, 2002 at 06:58 UTC | |
|