Description
HArray is an implemenation of the Array class using only Hashes. Regular Arrays are
never used except once to delegate the pack method, and for *args parameters (since
there is no way around those is some cases). HArray is for all practical purposes 100% compatible
with Array.
HArray is slower then the built in Array class, but not as slow as one might expect,
since a Hash in general is faster than an Array.
It might be interesting to see how this would perform if it were written in
c. Not all that useful, but an interesting example.
AUTHOR(s)