in reply to Re^3: setting hash keys by array
in thread setting hash keys by array

Did your $ptr = 1 line really work on your machine? It didn't on mine.

At least your new code is correct... ;) BTW, if you use the -1 index on array, you don't need to shift @array in the loop -- that's the version I'd prefer in production code.

Anyways, it was just fun looking at alternatives. It's not often I see a clean use of type globs!

Replies are listed 'Best First'.
Re^5: setting hash keys by array
by Aristotle (Chancellor) on Sep 10, 2002 at 08:57 UTC
    Oops. I wrote the while version first and forgot to change the shift into a plain $_ when I copypasted. Fixed.

    Makeshifts last the longest.