in reply to Re: Difference between array and a hash? (Newbie concerns)
in thread Difference between array and a hash? (Newbie concerns)

In perl that used to be called pseudohash, but they were removed.
  • Comment on Re^2: Difference between array and a hash? (Newbie concerns)

Replies are listed 'Best First'.
Re^3: Difference between array and a hash? (Newbie concerns)
by hobbs (Monk) on Jul 31, 2009 at 09:30 UTC
    Pseudohash goes the other way, though. Pseudohashes were arrays internally, with a hash glued on so that the items could be accessed by key. The "ordered hash" as provided by PHP or IxHash is a hash primarily, with an array glued on to provide an ordering.
      Those are implementation details, not really relevant to how you use either
        The fact that they're two completely different things, accessed totally differently, and used totally differently, is not such a minor detail.