in reply to Re: Re: Array named for array element?
in thread Array named for array element?

Then you definitely want a hash of arrays just like everyone else suggested. :)

--
Allolex

  • Comment on Re: Re: Re: Array named for array element?

Replies are listed 'Best First'.
Re: Re: Re: Re: Array named for array element?
by Anonymous Monk on Jul 03, 2003 at 15:57 UTC
    What happens when that has has repeated keys though?

      Well, a hash cannot have repeated keys. If the key is identical, it will overwrite your old data. You can use a counter to number the hash keys and avoid this problem. :)

      HTH

      --
      Allolex