File: benchmark.pl

package info (click to toggle)
libmoosex-arrayref-perl 0.005-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 172 kB
  • sloc: perl: 249; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 767 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use Benchmark qw(:all);

{
	package Local::Foo;
	use Moose::Role;
	has foo => (is => 'rw');
	sub test {
		my $class = shift;
		my $self  = $class->new;
		$self->foo($_) for 0 .. 99;
	}
}

{
	package Local::HashRef::M;
	use Moose;
	with 'Local::Foo';
}

{
	package Local::HashRef::I;
	use Moose;
	with 'Local::Foo';
	__PACKAGE__->meta->make_immutable;
}

{
	package Local::ArrayRef::M;
	use MooseX::ArrayRef;
	with 'Local::Foo';
}

{
	package Local::ArrayRef::I;
	use MooseX::ArrayRef;
	with 'Local::Foo';
	__PACKAGE__->meta->make_immutable;
}

cmpthese(10_000, {
	HashRef_M => sub { Local::HashRef::M::->test },
	HashRef_I => sub { Local::HashRef::I::->test },
	ArrayRef_M => sub { Local::ArrayRef::M::->test },
	ArrayRef_I => sub { Local::ArrayRef::I::->test },
});