File: method.pl

package info (click to toggle)
libdata-clone-perl 0.006-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: perl: 669; makefile: 8; ansic: 5
file content (35 lines) | stat: -rw-r--r-- 498 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
#!perl -w

use strict;

use Benchmark qw(:all);

use Data::Clone;

BEGIN{
    package Object;
    sub new {
        my $class = shift;
        return bless { @_ }, $class;
    }
    package DC;
    use Data::Clone qw(clone);
    our @ISA = qw(Object);
}

my %args = (
    foo => 42,
    inc => { %INC },
);

my $o  = DC->new(%args);

print "Method vs. Function:\n";
cmpthese -1 => {
    'method' => sub{
        my $x = $o->clone;
    },
    'function' => sub{
        my $x = clone($o);
    },
};