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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Test::Exception;
sub U {
my $f = shift;
sub { $f->($f, @_) };
}
sub Y {
my $f = shift;
U(sub { my $h = shift; sub { $f->(U($h)->())->(@_) } })->();
}
{
package List;
use Moose::Role;
has '_list' => (
is => 'ro',
isa => 'ArrayRef',
init_arg => '::',
default => sub { [] }
);
sub head { (shift)->_list->[0] }
sub tail {
my $self = shift;
(ref $self)->new(
'::' => [
@{$self->_list}[1 .. $#{$self->_list}]
]
);
}
sub print {
join ", " => @{$_[0]->_list};
}
package List::Immutable;
use Moose::Role;
requires 'head';
requires 'tail';
sub is_empty { not defined ($_[0]->head) }
sub length {
my $self = shift;
(::Y(sub {
my $redo = shift;
sub {
my ($list, $acc) = @_;
return $acc if $list->is_empty;
$redo->($list->tail, $acc + 1);
}
}))->($self, 0);
}
sub apply {
my ($self, $function) = @_;
(::Y(sub {
my $redo = shift;
sub {
my ($list, $func, $acc) = @_;
return (ref $list)->new('::' => $acc)
if $list->is_empty;
$redo->(
$list->tail,
$func,
[ @{$acc}, $func->($list->head) ]
);
}
}))->($self, $function, []);
}
package My::List1;
use Moose;
::lives_ok {
with 'List', 'List::Immutable';
} '... successfully composed roles together';
package My::List2;
use Moose;
::lives_ok {
with 'List::Immutable', 'List';
} '... successfully composed roles together';
}
{
my $coll = My::List1->new;
isa_ok($coll, 'My::List1');
ok($coll->does('List'), '... $coll does List');
ok($coll->does('List::Immutable'), '... $coll does List::Immutable');
ok($coll->is_empty, '... we have an empty collection');
is($coll->length, 0, '... we have a length of 1 for the collection');
}
{
my $coll = My::List2->new;
isa_ok($coll, 'My::List2');
ok($coll->does('List'), '... $coll does List');
ok($coll->does('List::Immutable'), '... $coll does List::Immutable');
ok($coll->is_empty, '... we have an empty collection');
is($coll->length, 0, '... we have a length of 1 for the collection');
}
{
my $coll = My::List1->new('::' => [ 1 .. 10 ]);
isa_ok($coll, 'My::List1');
ok($coll->does('List'), '... $coll does List');
ok($coll->does('List::Immutable'), '... $coll does List::Immutable');
ok(!$coll->is_empty, '... we do not have an empty collection');
is($coll->length, 10, '... we have a length of 10 for the collection');
is($coll->print, '1, 2, 3, 4, 5, 6, 7, 8, 9, 10', '... got the right printed value');
my $coll2 = $coll->apply(sub { $_[0] * $_[0] });
isa_ok($coll2, 'My::List1');
is($coll->print, '1, 2, 3, 4, 5, 6, 7, 8, 9, 10', '... original is still the same');
is($coll2->print, '1, 4, 9, 16, 25, 36, 49, 64, 81, 100', '... new collection is changed');
}
{
my $coll = My::List2->new('::' => [ 1 .. 10 ]);
isa_ok($coll, 'My::List2');
ok($coll->does('List'), '... $coll does List');
ok($coll->does('List::Immutable'), '... $coll does List::Immutable');
ok(!$coll->is_empty, '... we do not have an empty collection');
is($coll->length, 10, '... we have a length of 10 for the collection');
is($coll->print, '1, 2, 3, 4, 5, 6, 7, 8, 9, 10', '... got the right printed value');
my $coll2 = $coll->apply(sub { $_[0] * $_[0] });
isa_ok($coll2, 'My::List2');
is($coll->print, '1, 2, 3, 4, 5, 6, 7, 8, 9, 10', '... original is still the same');
is($coll2->print, '1, 4, 9, 16, 25, 36, 49, 64, 81, 100', '... new collection is changed');
}
done_testing;
|