in reply to Localizable / customizable 'each' iterator for hashes
From perldoc -f each :
Since Perl 5.8.1 the ordering is different even between different runs of Perl for security reasons
In your case, it doesn't matter because each run can have its own iterator.
You also prefaced that with but unless a hash changes its keys which you shouldn't do under most circumstances.
The problem is that perldoc -f each also says:
It is always safe to delete the item most recently returned by "each()"
Cheers - L~R
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Localizable / customizable 'each' iterator for hashes
by davido (Cardinal) on Jul 19, 2004 at 19:48 UTC |