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.

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.972 second using v1.00-cache-2.02-grep-82fe00e-cpan-9f2165ba459b )