in reply to Re: running backwards on a hash
in thread running backwards on a hash

But does reversing on the keys of the same hash will always return the same array (reversed to keys) ?

Hotshot

Replies are listed 'Best First'.
Re: Re: Re: running backwards on a hash
by pixel (Scribe) on Dec 11, 2001 at 14:34 UTC

    As long as you don't change the hash, then all calls to keys (and therefore reverse keys) will return the same list, in the same order. If you modify the hash inbetween calls to keys then anything could happen.

    Blessed Be
    The Pixel

      Thanks guys, it realy helped

      Hotshot