http://www.perlmonks.org?node_id=134093


in reply to Re: More Sorted Business with Hashes
in thread More Sorted Business with Hashes

Having not used the various modules mentioned in the thread, I'm not sure about relative overhead, but... Using the method above to get an array of sorted keys, how about passing a hash slice, rather than your original hash to wherever you're trying to use the "ordered hash"? I.e. @hash{@keysByValue} rather than just %hash ? Slices are fun! :-)
  • Comment on Re: Re: More Sorted Business with Hashes