blob: 5cc4ffc117021171a088091a47f70ff5e74e4622 (
plain)
1
2
3
4
5
6
7
8
9
|
Objects implemented with arrayrefs rather than hashrefs are often
faster than those implemented with hashrefs. Moose's default object
implementation is hashref based. Can we go faster?
Simply use MooseX::ArrayRef instead of use Moose, but note the
limitations in the section below.
The current implementation is mostly a proof of concept, but it does
mostly seem to work.
|