Statistics-Test-Sequence

 view release on metacpan or  search on metacpan

lib/Statistics/Test/Sequence.pm  view on Meta::CPAN

=cut

sub new {
    my $proto = shift;
    my $class = ref($proto)||$proto;

    my $self = {
        data => undef,
    };

    bless $self => $class;

    return $self;
}

=head2 set_data

Sets the random numbers to operate on. First argument
must be either an array reference to an array of random
numbers or a code reference.



( run in 0.478 second using v1.01-cache-2.11-cpan-65fba6d93b7 )