Algorithm-SlopeOne
view release on metacpan or search on metacpan
lib/Algorithm/SlopeOne.pm view on Meta::CPAN
use utf8;
use warnings qw(all);
use Carp qw(confess);
our $VERSION = '0.004'; # VERSION
sub new {
my ($class) = @_;
return bless {
diffs => {},
freqs => {},
} => $class;
}
sub diffs {
my ($self) = @_;
return $self->{diffs};
}
( run in 1.331 second using v1.01-cache-2.11-cpan-de7293f3b23 )