http://qs1969.pair.com?node_id=784862


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

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.
  • Comment on Re^3: Difference between array and a hash? (Newbie concerns)

Replies are listed 'Best First'.
Re^4: Difference between array and a hash? (Newbie concerns)
by Anonymous Monk on Jul 31, 2009 at 09:33 UTC
    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.