|
|
| There's more than one way to do things | |
| PerlMonks |
Re^3: Hash order randomization is coming, are you ready?by Tanktalus (Canon) |
| on Dec 02, 2012 at 14:49 UTC ( #1006724=note: print w/ replies, xml ) | Need Help?? |
|
Maintaining the same order between values and keys should mean you can depend on keys returning the same order each time, otherwise how is values supposed to know which order to present its order? That makes it look pretty dependable to me, assuming: a) same process (or a fork of it), and b) hash otherwise unchanged between the two calls to keys. Personally, I only rely on the order when I'm doing something like @hash2{keys %hash1} = values %hash1;, otherwise I don't think I ever rely on the order from keys (if I care, I sort them) or values (there's no real way to sort values the same as sorting keys anyway), so I doubt I'm affected, but only one way to find out. :-)
In Section
Meditations
|
|
||||||||||||||||||||||