2008-07-13から1日間の記事一覧

Moose::Autoboxの速度

#!perl use Moose::Autobox; use Benchmark qw/timethese cmpthese/; cmpthese( timethese( 0, { autobox => sub { my $array = [ 1, 2, 3 ]; $array->push(4); }, normal => sub { my $array = [ 1, 2, 3 ]; push @{$array}, 4; }, } ) ); Rate autobox nor…