Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/perl-Moose/benchmarks/ |
Upload File : |
#!/usr/bin/perl use strict; use warnings; use Benchmark qw[cmpthese]; =pod This benchmark compares the overhead of a auto-created type constraint vs. none at all vs. a custom-created type. =cut { package Foo; use Moose; use Moose::Util::TypeConstraints; has 'baz' => (is => 'rw'); has 'bar' => (is => 'rw', isa => 'Foo'); } { package Bar; sub new { bless {} => __PACKAGE__ } sub bar { my $self = shift; $self->{bar} = shift if @_; $self->{bar}; } } my $foo = Foo->new; my $bar = Bar->new; cmpthese(200_000, { 'hand coded' => sub { $bar->bar($bar); }, 'w/out_constraint' => sub { $foo->baz($foo); }, 'w_constraint' => sub { $foo->bar($foo); }, } ); 1;